function checkPassword()
{
	if( document.password.passwd.value == "forte" )
	{
		document.URL="latest.html";
	}
	else
	{
		window.alert("The password you entered was incorrect.");
		document.password.passwd.value = "";
		document.password.passwd.focus();
		x=1;
	}
}

var x=1;

function checkNumber()
{
	if( x==5 )	
	{
		document.password.signIn.focus();
	}
	x++;
}
