  function validateForm() {
    if(contact.name.value == "") {
      alert("Please Fill In The Name Field");
      return false;
    }
    if(contact.email.value == "") {
      alert("Please Fill In The Email Field");
      return false;
    }
    if(contact.subject.value == "") {
      alert("Please Fill In The Subject Field");
      return false;
    }
    if(contact.home.value == "") {
      alert("Please Fill In The Home Phone Field");
      return false;
    }
    if(contact.body.value == "") {
      alert("Please Fill In The Enquiry Field");
      return false;
    }

    return true;
  }
