
function Form_ValidatorAppt(theForm)
{

  if (theForm.howHeard.value == "Please Select")
  {
    alert("Please select how heard?");
    theForm.howHeard.focus();
    return (false);
  }
  if (theForm.email.value.length == 0) {
    alert("Please fill in the E-mail address");
    theForm.email.focus();
    return false;
  }
  re = /^[a-zA-Z0-9_.\-]+@[a-zA-Z0-9.\-]+[a-zA-Z0-9\-]\.[a-zA-Z][a-zA-Z]+$/;
  if (!re.test(theForm.email.value)) {
    alert("Please fill in a correct E-mail address");
    theForm.email.focus();
    return false;
  }
	
	if (theForm.Home_phone.value == "")
  {
    alert("Please enter Home Phone.");
    theForm.Home_phone.focus();
    return (false);
  }
  
  if (theForm.work_phone.value == "")
  {
    alert("Please enter Work/Cell Phone.");
    theForm.work_phone.focus();
    return (false);
  }
  
  if (theForm.full_name.value == "")
  {
    alert("Please enter your FULL name.");
    theForm.full_name.focus();
    return (false);
  }
  if (theForm.textArea.value == "")
  {
    alert("Please enter information you are requesting.");
    theForm.textArea.focus();
    return (false);
  }
  return (true);
}