function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Last_Name.value == "")
  {
    alert("Please enter a value for the \"Last_Name\" field.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.Last_Name.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Last_Name\" field.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.First_Name.value == "")
  {
    alert("Please enter a value for the \"First_Name\" field.");
    theForm.First_Name.focus();
    return (false);
  }

  if (theForm.First_Name.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"First_Name\" field.");
    theForm.First_Name.focus();
    return (false);
  }

  if (theForm.Social_Security.value == "")
  {
    alert("Please enter a value for the \"Social_Security\" field.");
    theForm.Social_Security.focus();
    return (false);
  }

  if (theForm.Social_Security.value.length > 12)
  {
    alert("Please enter at most 12 characters in the \"Social_Security\" field.");
    theForm.Social_Security.focus();
    return (false);
  }

  if (theForm.Customer_No.value == "")
  {
    alert("Please enter a value for the \"Customer_No\" field.");
    theForm.Customer_No.focus();
    return (false);
  }

  if (theForm.Customer_No.value.length > 8)
  {
    alert("Please enter at most 8 characters in the \"Customer_No\" field.");
    theForm.Customer_No.focus();
    return (false);
  }

  if (theForm.Cut_Off_Month.selectedIndex < 0)
  {
    alert("Please select one of the \"Cut_Off_Month\" options.");
    theForm.Cut_Off_Month.focus();
    return (false);
  }

  if (theForm.Cut_Off_Month.selectedIndex == 0)
  {
    alert("The first \"Cut_Off_Month\" option is not a valid selection.  Please choose one of the other options.");
    theForm.Cut_Off_Month.focus();
    return (false);
  }

  if (theForm.Cut_Off_Day.selectedIndex < 0)
  {
    alert("Please select one of the \"Cut_Off_Day\" options.");
    theForm.Cut_Off_Day.focus();
    return (false);
  }

  if (theForm.Cut_Off_Day.selectedIndex == 0)
  {
    alert("The first \"Cut_Off_Day\" option is not a valid selection.  Please choose one of the other options.");
    theForm.Cut_Off_Day.focus();
    return (false);
  }

  if (theForm.Cut_Off_Year.selectedIndex < 0)
  {
    alert("Please select one of the \"Cut_Off_Year\" options.");
    theForm.Cut_Off_Year.focus();
    return (false);
  }

  if (theForm.EMail_Address.value == "")
  {
    alert("Please enter a value for the \"EMail_Address\" field.");
    theForm.EMail_Address.focus();
    return (false);
  }

  if (theForm.EMail_Address.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"EMail_Address\" field.");
    theForm.EMail_Address.focus();
    return (false);
  }

  if (theForm.Billing_Street_Address.value == "")
  {
    alert("Please enter a value for the \"Billing_Street_Address\" field.");
    theForm.Billing_Street_Address.focus();
    return (false);
  }

  if (theForm.Billing_Street_Address.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Billing_Street_Address\" field.");
    theForm.Billing_Street_Address.focus();
    return (false);
  }

  if (theForm.Billing_City_State.value == "")
  {
    alert("Please enter a value for the \"Billing_City_State\" field.");
    theForm.Billing_City_State.focus();
    return (false);
  }

  if (theForm.Billing_City_State.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Billing_City_State\" field.");
    theForm.Billing_City_State.focus();
    return (false);
  }

  if (theForm.Forwarding_Street_Address.value == "")
  {
    alert("Please enter a value for the \"Forwarding_Street_Address\" field.");
    theForm.Forwarding_Street_Address.focus();
    return (false);
  }

  if (theForm.Forwarding_Street_Address.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Forwarding_Street_Address\" field.");
    theForm.Forwarding_Street_Address.focus();
    return (false);
  }

  if (theForm.Forwarding_City_State.value == "")
  {
    alert("Please enter a value for the \"Forwarding_City_State\" field.");
    theForm.Forwarding_City_State.focus();
    return (false);
  }

  if (theForm.Forwarding_City_State.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Forwarding_City_State\" field.");
    theForm.Forwarding_City_State.focus();
    return (false);
  }

  if (theForm.Home_Phone_Area.value.length > 3)
  {
    alert("Please enter at most 3 characters in the \"Home_Phone_Area\" field.");
    theForm.Home_Phone_Area.focus();
    return (false);
  }

  var checkOK = "0123456789-.";
  var checkStr = theForm.Home_Phone_Area.value;
  var allValid = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch == ".")
    {
      allNum += ".";
      decPoints++;
    }
    else
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Home_Phone_Area\" field.");
    theForm.Home_Phone_Area.focus();
    return (false);
  }

  if (decPoints > 1)
  {
    alert("Please enter a valid number in the \"Home_Phone_Area\" field.");
    theForm.Home_Phone_Area.focus();
    return (false);
  }

  if (theForm.Home_Phone_No.value == "")
  {
    alert("Please enter a value for the \"Home_Phone_No\" field.");
    theForm.Home_Phone_No.focus();
    return (false);
  }

  if (theForm.Home_Phone_No.value.length > 8)
  {
    alert("Please enter at most 8 characters in the \"Home_Phone_No\" field.");
    theForm.Home_Phone_No.focus();
    return (false);
  }

  if (theForm.Day_Time_Area.value == "")
  {
    alert("Please enter a value for the \"Day_Time_Area\" field.");
    theForm.Day_Time_Area.focus();
    return (false);
  }

  if (theForm.Day_Time_Area.value.length > 3)
  {
    alert("Please enter at most 3 characters in the \"Day_Time_Area\" field.");
    theForm.Day_Time_Area.focus();
    return (false);
  }

  var checkOK = "0123456789-.";
  var checkStr = theForm.Day_Time_Area.value;
  var allValid = true;
  var decPoints = 0;
  var allNum = "";
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
    if (ch == ".")
    {
      allNum += ".";
      decPoints++;
    }
    else
      allNum += ch;
  }
  if (!allValid)
  {
    alert("Please enter only digit characters in the \"Day_Time_Area\" field.");
    theForm.Day_Time_Area.focus();
    return (false);
  }

  if (decPoints > 1)
  {
    alert("Please enter a valid number in the \"Day_Time_Area\" field.");
    theForm.Day_Time_Area.focus();
    return (false);
  }

  if (theForm.Day_Time_Phone_No.value == "")
  {
    alert("Please enter a value for the \"Day_Time_Phone_No\" field.");
    theForm.Day_Time_Phone_No.focus();
    return (false);
  }

  if (theForm.Day_Time_Phone_No.value.length > 8)
  {
    alert("Please enter at most 8 characters in the \"Day_Time_Phone_No\" field.");
    theForm.Day_Time_Phone_No.focus();
    return (false);
  }
  return (true);
}