function validateContact(theForm) {
	if(theForm.name.value == "") {
		alert("Please enter your name.");
		theForm.name.focus();
		return;
	} else if(!getEmailIsValid(theForm.email.value)) {
		alert("Sorry, the email address is invalid, please enter again.");
		theForm.email.focus();
		return;
	} else if(theForm.message.value == "") {
		alert("Please enter your message.");
		theForm.message.focus();
		return;
	}
  
	theForm.submit();
}