
function launch(newURL, newName, newFeatures, orgName) {
  var popup = open(newURL, newName, newFeatures);
  if (popup.opener == null)
  popup.opener = window;
  popup.opener.name = orgName;
  return popup;
}
function launchpopup_cgi(windowURL,baseURL) {
  popup = launch(windowURL, "popboxcgi","scrollbars=yes,height=500,width=650,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,top=0,left=0,channelmode=no,dependent=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=no,status=no,toolbar=no","launcher");
}

function launchpopup_full(windowURL,baseURL) {
  popup = launch(windowURL, "popboxcgi","scrollbars=yes,height=500,width=750,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,top=0,left=0,channelmode=no,dependent=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=no,status=no,toolbar=no","launcherfull");
}

