function gotoRegister(){
	try{
		var sURL = gBaseSecure + "registration.asp";
		var sWindowFeatures = "title,resizable,scrollbars,top=0,";
		var sReplaceFlag = "";
		var eWin = window.open(sURL,"MXREG",sWindowFeatures,sReplaceFlag);
		if(!eWin){
			var sMsg = "Failed to open Mail Exchange Plus Registration Page.";
			sMsg += "\nThe reason may be due to the window being trapped by a Pop-up Blocker.";
			sMsg += "\nTry holding down the control key when clicking on the link.";
			alert(sMsg);	
			return 0;
		}
		eWin.focus();
	}
	catch(err){
		//alert("Failed to open Mail Exchange Plus Registration Page. \nTry holding down the control key when clicking on the Menu item.");
		return 0;
	}		
}

