function validform(passform){
if (passform.user_password.value=="")
{ 
alert("You must enter a password. This section is for members of the Pitman Creek Estates Homeowners' Association.");
passform.user_password.focus();
return false;
} 
else
{
var pword = passform.user_password.value.toLowerCase();
if (pword!="plano" && pword!="texas")
{ 
alert("That is an incorrect password. Please try again. This section is for members of the Pitman Creek Estates Homeowners' Association.");
passform.user_password.focus();
passform.user_password.select(); 
return false;
} 
else 
{

document.cookie="userPassword="+pword+"=; expires=Wednesday, 02-Feb-2010 23:12:40 GMT";
parent.window.location="http://www.pceha.org/submem/index.html";
}
} 
}