<!--
function FrontPage_Form1_Validator(theForm)
{

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

  if (theForm.Full_name.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Full Name\" field.");
    theForm.Full_name.focus();
    return (false);
  }

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

  if (theForm.Cell_pager_number.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"Cell Phone\" field.");
    theForm.Cell_pager_number.focus();
    return (false);
  }

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

  if (theForm.EMAIL.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Email\" field.");
    theForm.EMAIL.focus();
    return (false);
  }

  if (theForm.signed_contract.value == "")
  {
    alert("Please answer the \"Signed contract?\" question.");
    theForm.signed_contract.focus();
    return (false);
  }

  if (theForm.mortgage_approved.value == "")
  {
    alert("Please answer the \"Preapproved for mortgage?\" question.");
    theForm.mortgage_approved.focus();
    return (false);
  }

  if (theForm.Existing_Address.value == "")
  {
    alert("Please enter a value for the \"Address of Your Existing Home\" field.");
    theForm.Existing_Address.focus();
    return (false);
  }

  if (theForm.Existing_Address.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Address of Your Existing Home\" field.");
    theForm.Existing_Address.focus();
    return (false);
  }

  if (theForm.Existing_subdivision.value == "")
  {
    alert("Please enter a value for the \"Subdivision of Your Existing Home\" field.");
    theForm.Existing_subdivision.focus();
    return (false);
  }

  if (theForm.Existing_subdivision.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Subdivision of Your Existing Home\" field.");
    theForm.Existing_subdivision.focus();
    return (false);
  }

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

  if (theForm.Year_purchased.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Year Purchased\" field.");
    theForm.Year_purchased.focus();
    return (false);
  }

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

  if (theForm.Square_Feet.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Square Feet\" field.");
    theForm.Square_Feet.focus();
    return (false);
  }
  
    if (theForm.Pool.value == "")
  {
    alert("Please answer the \"Pool?\" question.");
    theForm.Pool.focus();
    return (false);
  }

  
  return (true);
}
//-->