// JavaScript Document

function showPopup(url, target, width, height, top, left) {
  window.open(url, target, "width=" + width + ",height=" + 
    height + ",top=" + top + ",left=" + left +
    "toolbar=0,location=0,directories=0,status=0," +
    "menubar=0,scrollbar=0,resizable=0");
}
