function FrontPage_Form1_Validator(theForm)
{

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

  if (theForm.a_NAME.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Please enter your full name\" field.");
    theForm.a_NAME.focus();
    return (false);
  }

  if (theForm.b_LEPHONE_NUMBER.value == "")
  {
    alert("Please enter a value for the \"Please enter your email address\" field.");
    theForm.b_LEPHONE_NUMBER.focus();
    return (false);
  }

  if (theForm.b_LEPHONE_NUMBER.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Please enter your email address\" field.");
    theForm.b_LEPHONE_NUMBER.focus();
    return (false);
  }

  if (theForm.d_EMAIL_ADDRESS.value == "")
  {
    alert("Please enter a value for the \"Please enter your email address\" field.");
    theForm.d_EMAIL_ADDRESS.focus();
    return (false);
  }

  if (theForm.d_EMAIL_ADDRESS.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Please enter your email address\" field.");
    theForm.d_EMAIL_ADDRESS.focus();
    return (false);
  }
  return (true);
}
