<!-- /* Form validation script by Prather Production, written by Michael Prather.  Visit http://www.pratherproductions.com
function form_Validator(form)
{

  if (form.name.value == "")
  {
    alert("Please enter your contact name.");
    form.name.focus();
        return (false);
  }

  if (form.company.value == "")
  {
    alert("Please enter your Company Name.");
    form.company.focus();
    return (false);
}


  if (form.email.value == "")
  {
    alert("Please enter your email address.");
    form.email.focus();
    return (false);
  }

  if (form.phone.value == "")
  {
    alert("Please enter your phone number.");
    form.phone.focus();
    return (false);
}






  return (true);
  }

