/* JavaScript scripts for Wakeford & Associates */

/* client-side form validation for Client Resource Login */

function ValidateForm1() {
	if (document.form1.access_password.value.length == 0)
	  	{alert("You must enter a password to access this page."); return false;}			
	else return true;
}

function ValidateForm2() {
	if (document.form2.access_password.value.length == 0)
	  	{alert("You must enter a password to access this page."); return false;}	
	else return true;
}

function ValidateForm3() {
	if (document.form3.access_password.value.length == 0)
	  	{alert("You must enter a password to access this page."); return false;}
	else return true;
}


