  function popupPage(URL,l, t, w, h, winname) {
  var windowprops = "location=no,scrollbars=yes,menubar=no,toolbar=yes,resizable=yes"
    + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
  popup = window.open(URL,winname,windowprops);
  popup.focus();
}

  function popupPage1(URL, winname) {
  var windowprops = "status=yes,location=yes,scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes";
  popup = window.open(URL,winname,windowprops);
  popup.focus();
}

  function popupPageNoScroll(URL,l, t, w, h, winname) {
  var windowprops = "location=no,scrollbars=no,menubar=no,toolbar=no,resizable=no"
    + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
  popup = window.open(URL,winname,windowprops);
  popup.focus();
}

