function validateForm() {
with (document.CONTACTFORM) {
var alertMsg = "The following REQUIRED fields\nhave been left empty:\n";
if (FirstName.value == "") alertMsg += "\nYour First Name";
if (LastName.value == "") alertMsg += "\nYour Last Name";
if (email.value == "") alertMsg += "\nYour Email Address";
if (Message.value == "") alertMsg += "\nYour Message";
if (alertMsg != "The following REQUIRED fields\nhave been left empty:\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
//-->
