function openGlobalHelp() {
	
			var mypage = "/userMods/_INCtemplateGlobalHelp_.asp?currpage=index.asp";
			var myname='globalhelp';
	
			var hwidth=784;
			var hheight=630;
	
			  if(screen.width){
				  var winl = (screen.width-hwidth)/2;
				  var wint = (screen.height-hheight)/2;
			  }else{
					winl = 0;
					wint = 0;
				}
			  if (winl < 0) winl = 0;
			  if (wint < 0) wint = 0;

			  var settings = 'height=' + hheight + ',';
			  settings += 'width=' + hwidth + ',';
			  settings += 'top=' + wint + ',';
			  settings += 'left=' + winl + ',';
			  settings += 'scrollbars=yes,resizable=1';

			  win = window.open(mypage,myname,settings);
			  win.window.focus();
		}