function siteLogin()
{
	var intScreenWidth = screen.width;
	var intScreenHeight = screen.height;
	if (document.all || document.layers)
	{
	   intScreenWidth = screen.availWidth;
	   intScreenHeight = screen.availHeight;
	}
	var intWindowWidth = intScreenWidth - 100;
	var intWindowHeight = intScreenHeight - 100;
	var intWindowLeft = (intScreenWidth-intWindowWidth)/2;
	var intWindowTop = (intScreenHeight-intWindowHeight)/2;
	
	var strFeatures;
	strFeatures += "toolbar=0,";
	strFeatures += "location=0,";
	strFeatures += "directories=0,";
	strFeatures += "status=1,";
	strFeatures += "menubar=0,";
	strFeatures += "scrollbars=1,";
	strFeatures += "resizable=0,";
	strFeatures += "width=" + intWindowWidth + ",";
	strFeatures += "height=" + intWindowHeight + ",";
	strFeatures += "left=" + intWindowLeft + ",";
	strFeatures += "top=" + intWindowTop + ",";
	
	window.open("https://www.markraesecure.com/?site=4CUVKgwFLLFkUw/Gvze7lw==", "secure", strFeatures);
}