function VerifyLogon(f){

	if (f.AccountLogonID.value.length == 0){
		alert("Please enter your User ID");
		f.AccountLogonID.focus();
		f.AccountLogonID.select();
		return false; 
		}
	else if (f.AccountPassword.value.length == 0){
		alert("Please enter your Password");
		f.AccountPassword.focus();
		f.AccountPassword.select();
		return false;
		}
	else {return true;}		
}

function VerifyCredentials(f){
//var emailExp = /^\w+@\w+.com|\w+@\w+.net|\w+@\w+.org|\w+@\w+.edu|\w+@\w+.gov$/;

var emailExp = /^.+@.+.$/;

var emailStr = new String(f.Email.value);

	if (f.Email.value.length ==0){
		alert("Please enter your email address");
		f.Email.focus();
		f.Email.select();
		return false;
		}
	else if (!emailExp.test(emailStr)){
		alert("Please enter a valid email address\n\nEX: jsmith@xyz.com");
		f.Email.focus();
		f.Email.select();
		return false;
		}
	else {return true;}		
}