 function relocate(toFile) {
	document.location.href='http://www.parkerchamber.com/' + toFile;
}

function submitIt(theForm) { 
		if (!(validEntry(theForm.Email1.value))) {
			alert("Please enter your Email Address or Username");
			theForm.Email1.focus();
			theForm.Email1.select();
			return false;
		}		
		if (!(validEntry(theForm.Password.value,1))) {
			alert("Please enter your password");
			theForm.Password.focus();
			theForm.Password.select();
			return false;
		} 
		if(!validEntry(theForm.user_vcode.value,4)) {
			alert("Please enter all 4 characters shown in the image");
			theForm.user_vcode.focus();
			theForm.user_vcode.select();
			return false;
		}		
		return true;
}

function submitForgot(theForm) { 
		if (!(validEmail(theForm.Email.value))) {
			alert("Please enter your email address so we may send your login information to you");
			theForm.Email.focus();
			theForm.Email.select();
			return false;
		}  
		return true;
} 
