function Quote_Validator(theForm)
{

 if (theForm.name.value == "")
  {
    alert("Please enter your name.");
    theForm.name.focus();
    return (false);
  }

 if (theForm.company.value == "")
  {
     alert("Please enter the name of your company.");
     theForm.company.focus();
     return (false);
  }

 if (theForm.phone.value == "")
  {
     alert("Please enter your phone.");
     theForm.phone.focus();
     return (false);
  }

 if (theForm.fax.value == "")
  {
     alert("Please enter your fax.");
     theForm.fax.focus();
     return (false);
  }

 if (theForm.email.value == "")
  {
    alert("Please enter your email address.");
    theForm.email.focus();
    return (false);
  }

  if (isEmail(theForm.email.value) == false)
  {
    alert("Please enter a valid email address.");
    theForm.email.focus();
    return (false);
  }

  
}