function gotoRegister(pv_sUserID){
	try{
		var sURL = gBaseSecure + "spinmail/register.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,"SPINREG",sWindowFeatures,sReplaceFlag);
		eWin.focus();
	}
	catch(err){
		alert("Failed to open SPINmail Registration Page");
		return 0;
	}		
}

function gotoLogin(pv_sUserID){
	try{
		var sURL = gBaseSecure + "spinmail/login.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,"SPINLOGIN",sWindowFeatures,sReplaceFlag);
		eWin.focus();
	}
	catch(err){
		alert("Failed to open SPINmail Login Page");
		return 0;
	}		
}