
function contactValidation(contactForm) {
	
  if (contactForm.Name.value == "")
  {
    alert("Please enter your name in the \"Name\" field. Thank you.");
    contactForm.Name.focus();
    return false;
  }
  
  if (contactForm.Address.value == "")
  {
    alert("Please enter your street address in the \"Address\" field. Thank you.");
    contactForm.Address.focus();
    return false;
  }
  
  if (contactForm.City.value == "")
  {
    alert("Please enter your city in the \"City\" field. Thank you.");
    contactForm.City.focus();
    return false;
  }
  
  if (contactForm.State.value == "")
  {
    alert("Please enter your state in the \"State\" field. Thank you.");
    contactForm.State.focus();
    return false;
  }
  
  if (contactForm.Zip.value == "")
  {
    alert("Please enter your zip code in the \"Zip Code\" field. Thank you.");
    contactForm.Zip.focus();
    return false;
  }
  
   if (contactForm.emailFrom.value == "")
  {
    alert("Please enter your e-mail address in the \"E-mail Address\" field. Thank you.");
    contactForm.emailFrom.focus();
    return false;
  }
  
  if (contactForm.HomePhone.value == "")
  {
    alert("Please enter your home phone number in the \"Home Phone Number\" field. Thank you.");
    contactForm.HomePhone.focus();
    return false;
  }
  
  else {
    return true;
  }
	
}

