function submitIt(theForm) {
		if (!validEntry(theForm.YourName.value,2)) {
			alert("Please enter your name");
			theForm.YourName.focus();
			theForm.YourName.select();
			return false;
		}
		if (!validEmail(theForm.Email.value)) {
			alert("Please enter a valid Email address.");
			theForm.Email.focus();
			theForm.Email.select();
			return false;
		}
		if (!validEntry(theForm.SubjectLine.value,2)) {
			alert("Please enter your email subject line.");
			theForm.SubjectLine.focus();
			theForm.SubjectLine.select();
			return false;
		}
		if (!validEntry(theForm.TextToSend.value,2)) {
			alert("Please enter a message");
			theForm.TextToSend.focus();
			theForm.TextToSend.select();
			return false;
		}
		return true;
} 