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.FIRST_NAME.value == "")
  {
    alert("Please enter a value for the \"First Name\" field.");
    theForm.FIRST_NAME.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 < 6)
  {
    alert("Please enter at least 6 characters in the \"Email Address\" field.");
    theForm.EMAIL_ADDRESS.focus();
    return (false);
  }

  if (theForm.CREDIT_CARD_TYPE.selectedIndex == 0)
  {
    alert("The first \"Credit Card Type\" option is not a valid selection.  Please choose one of the other options.");
    theForm.CREDIT_CARD_TYPE.focus();
    return (false);
  }

  if (theForm.CREDIT_CARD_NUMBER.value == "")
  {
    alert("Please enter a value for the \"Credit Card Number\" field.");
    theForm.CREDIT_CARD_NUMBER.focus();
    return (false);
  }

  if (theForm.CREDIT_CARD_HOLDER_NAME.value == "")
  {
    alert("Please enter a value for the \"Credit Card Name On Card\" field.");
    theForm.CREDIT_CARD_HOLDER_NAME.focus();
    return (false);
  }

  if (theForm.CREDIT_CARD_EXPIRY_MONTH.selectedIndex == 0)
  {
    alert("The first \"Credit Card Expiry Month\" option is not a valid selection.  Please choose one of the other options.");
    theForm.CREDIT_CARD_EXPIRY_MONTH.focus();
    return (false);
  }

  if (theForm.CREDIT_CARD_EXPIRY_YEAR.selectedIndex == 0)
  {
    alert("The first \"Credit Card Expiry Year\" option is not a valid selection.  Please choose one of the other options.");
    theForm.CREDIT_CARD_EXPIRY_YEAR.focus();
    return (false);
  }
  return (true);
}