function freepass_Validator(theForm)
{

  if (theForm.name_first.value == "")
  {
    alert("Please enter your First Name.");
    theForm.name_first.focus();
    return (false);
  }

  if (theForm.name_last.value == "")
  {
    alert("Please enter your Last Name.");
    theForm.name_last.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter your Email Address.");
    theForm.email.focus();
    return (false);
  }

  if ((theForm.email.value.indexOf('@',0) == -1) || (theForm.email.value.indexOf('.',0) == -1))
  {
    alert("Email Address is incorrectly formatted. Please enter again.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.phone_contact.value == "")
  {
    alert("Please enter your Phone.");
    theForm.phone_contact.focus();
    return (false);
  }

  if (theForm.zipcode.value == "")
  {
    alert("Please enter your Zip.");
    theForm.zipcode.focus();
    return (false);
  }

  if (theForm.contact.value == "")
  {
    alert("Please select your prefered method for being contacted.");
    theForm.contact.focus();
    return (false);
  }

  return (true);
}
