function application_Validator(theForm)
{

  if (theForm.full_name.value == "")
  {
    alert("Please enter your name.");
    theForm.full_name.focus();
    return (false);
  }


  if (theForm.address_1.value == "")
  {
    alert("Please enter your address.");
    theForm.address_1.focus();
    return (false);
  }


  if (theForm.address_city.value == "")
  {
    alert("Please enter your city.");
    theForm.address_city.focus();
    return (false);
  }


  if (theForm.address_state.value == "")
  {
    alert("Please enter your state.");
    theForm.address_state.focus();
    return (false);
  }


  if (theForm.address_zip.value == "")
  {
    alert("Please enter your zip.");
    theForm.address_zip.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("Your email address is incorrectly formatted. Please enter again.");
    theForm.email.focus();
    return (false);
  }

  return (true);
}

