<!-- Multiple Pop Up Window js-->	
	


function launch(URL, newName, newFeatures, orgName) {
  var remote = open(URL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function openWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=250,width=350,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}
function openNewWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=570,width=725,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}
function openPressWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=500,width=450,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0', 'launcher');
}
function openNoticeWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=300,width=450,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0', 'launcher');
}
function openDirectoryWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=400,width=800,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}
function openWhyECAWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=300,width=560,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}
function openWhyORCWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=260,width=560,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}
function openAsymmetricKeyPairWindow(URL) {
  Popup = launch(URL, 'popup', 'dependent=0,height=275,width=580,screenX=200,left=200,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', 'launcher');
}

