/** * launchHelp -> use to pop up all help windows **/ var popUpWin = false; function launchHelp(newURL, newFeatures){  if ((navigator.appName=='Microsoft Internet Explorer') && (window.HelpWindow)) HelpWindow.close();  HelpWindow = open(newURL, "HelpWindow", newFeatures + ",screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=0,toolbar=0,scroll=1");  if (HelpWindow.opener == null) HelpWindow.opener = window;  HelpWindow.focus();}function CheckPopup() {	if (popUpWin) {		popUpWin.close();	};};