function Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.name.focus();
    return (false);
  }

  if (theForm.mailing_address_1.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.mailing_address_1.focus();
    return (false);
  }

  if (theForm.job_title.value == "")
  {
    alert("Please enter a value for the \"Job Title\" field.");
    theForm.job_title.focus();
    return (false);
  }
   if (theForm.company_name.value == "")
  {
    alert("Please enter a value for the \"Company Name\" field.");
    theForm.company_name.focus();
    return (false);
  }
   if (theForm.city_state_zip.value == "")
  {
    alert("Please enter a value for the \"City State Zip\" field.");
    theForm.city_state_zip.focus();
    return (false);
  }
   if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }
  
  return (true);
}