function doForm(theForm) {
 if (theForm.person.value == "") {
  alert("Please fill in your Name.");
  return (false);
 }
 if (theForm.email1.value == "") {
  alert("Please enter a value for the Email Address field.");
  return (false);
 }
 if (theForm.email2.value == "") {
  alert("Please enter a value for the Email Validation Address field.");
  return (false);
 }
 if (theForm.comments.value == "") {
  alert("Please enter your Comment or Question.");
  return (false);
 }
 var mail1 = theForm.email1.value;
 var mail2 = theForm.email2.value;
 if (mail1 != mail2) {
  alert("The email verification did not match. Please make sure you are typing the correct address.");
  theForm.email2.value = "";
  return (false);
 }
 return (true);
}
