 	function submitIt(theForm) { 
		if (!(validEntry(theForm.MemberCode.value))) {
			alert("Please enter your User ID");
			theForm.MemberCode.focus();
			theForm.MemberCode.select();
			return false;
		}
		
		if (!(validEntry(theForm.Password.value))) {
			alert("Please enter your Password");
			theForm.Password.focus();
			theForm.Password.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;
} 