function validateContactForm() {
	var theReasons = "";
	
	if (document.getElementById('contact_who').value == "") {
		theReasons+="Who are you?\n";
	}
	
	if (document.getElementById('contact_name').value.length < 1) {
		theReasons+="Your Name\n";
	}
	if (document.getElementById('contact_phone').value.length < 1) {
		theReasons+="Your Phone Number\n";
	}
	if (document.getElementById('contact_email').value.length < 1 || !validateEmail(document.getElementById('contact_email').value)) {
		theReasons+="Your Email Address\n";
	}

	if (theReasons.length > 0) {
		theMessage = "Please check the following field(s) and submit the Online Contact Form again\n\n";
		theMessage += theReasons;
		window.alert(theMessage);
		return false;
	} else {
		return true;
	}
}
