function submitIt(theForm) {
		if (!validEntry(theForm.Name.value,3)) { 
			theForm.Name.focus();
			theForm.Name.select();
			alert("Enter a longer name");
			return false;
		}
		if (!validEmail(theForm.Email.value)) { 
			theForm.Email.focus();
			theForm.Email.select();
			alert("Please enter your valid Email address.");
			return false;
		}  
		if (!validEntry(theForm.Comments.value,10)) { 
			theForm.Comments.focus();
			theForm.Comments.select();
			alert("Please enter a longer message");
			return false;
		} 
		return true		
}