<!--
//Reject all passwords for now...
function TestPassword()
{
alert('Invalid password....please try again....');
document.login.password.value= "";
return false;
}
//-->







<!--
//Accept only 1 password for now
function TestPassword2()
{
var correctpw="4969188";

if (document.login.password.value==correctpw)
{
return true;
}
else 
{
alert('Invalid password....please try again....');
document.login.password.value= "";
return false;
}
}
//-->
