

function PrivacyStatement()
	{
		var h = 560;
		var w = 400;
		var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		var urlR = "PrivacyStatement.htm";
		window.open(urlR,"PS_Window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=" + w + ", height=" + h + ", left=" + LeftPosition + ", top=" + TopPosition);
	} //End function
	
function DevelopersLoginStep1()
{
		var un = document.getElementById("USERNAME").value;
		
		if (un == "")
		{
			window.alert("Please enter a username.");
		}
		else
		{
			window.location = "Login.html?USERNAME=" + un;
		}
}	