
//Open window

function JSOpenL(OpenURL) {
  win = window.open(OpenURL, "L", "status=no,toolbar=no,location=no,menu=no,width=500,height=500, top=20,left=120, scrollbars=yes");
}




function launch(newURL, newName, newFeatures) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null) // if something went wrong
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}
