<!--
function SubmitToGlobalZ()
{	
				
	if ((document.Form1.txtUsername.value == "") || (document.Form1.txtUsername.value == "Username") || (document.Form1.txtPassword.value == "") || (document.Form1.txtPassword.value == "Password"))
	{
		alert("Please enter your username and password");
	}
	else
	{
		document.Form2.username.value = document.Form1.txtUsername.value;
		document.Form2.password.value = document.Form1.txtPassword.value;
		document.Form2.submit();
	}
}
//-->
