function gotoRegister(pv_sUserID){
	try{
		if(!pv_sUserID || pv_sUserID=="undefined"){pv_sUserID='';}
		var sURL = gBaseSite + "secure/registration.asp?userid="+pv_sUserID;
		var nWidth = screen.width * 0.95;
		var nHeight = screen.height * 0.9;
		var nLeft = screen.width * 0.02;
		var sWindowFeatures = "title,resizable,scrollbars,top=0,"
		sWindowFeatures += " left=" + nLeft + " width=" + nWidth + "," + "height=" + nHeight;
		var sReplaceFlag = ""
		var eWin = window.open(sURL,"MOREG",sWindowFeatures,sReplaceFlag);
		eWin.focus();
	}
	catch(err){
		alert("Failed to open Medical Outlook Registration Page");
		return 0;
	}		
}

function gotoLogin(pv_sUserID, pv_sAccountNo){
	try{
		if(!pv_sUserID || pv_sUserID=="undefined"){pv_sUserID='';}
		if(!pv_sAccountNo || pv_sAccountNo=="undefined"){pv_sAccountNo='';}
		var sURL = gBaseSite + "secure/MO_login.asp?userid="+pv_sUserID;
		sURL += "&ACCOUNT="+pv_sAccountNo
		var nWidth = screen.width * 0.95;
		var nHeight = screen.height * 0.9;
		var nLeft = screen.width * 0.02;
		var sWindowFeatures = "title,resizable,scrollbars,top=0,"
		sWindowFeatures += " left=" + nLeft + " width=" + nWidth + "," + "height=" + nHeight;

		var sReplaceFlag = ""
		var eWin = window.open(sURL,"MOLOGIN",sWindowFeatures,sReplaceFlag);
		eWin.focus();
	}
	catch(err){
		alert("Failed to open Medical Outlook Login Page");
		return 0;
	}		
}