<!--
function FrontPage_Form1_Validator(theForm)
{


  if (theForm.fname.value == "")
  {
    alert("Please enter a value for your First Name");
    theForm.fname.focus();
    return (false);
  }

   if (theForm.lname.value == "")
  {
    alert("Please enter a value for your Last Name");
    theForm.lname.focus();
    return (false);
  }

  if (theForm.address.value == "")
  {
    alert("Please enter a value for your Address.");
    theForm.address.focus();
    return (false);
  }

  if (theForm.csz.value == "")
  {
    alert("Please enter a value for your City.");
    theForm.csz.focus();
    return (false);
  }



  if (theForm.zip.value == "")
  {
    alert("Please enter a ZIP Code.");
    theForm.zip.focus();
    return (false);
  }

  if (theForm.week.value == "")
  {
    alert("Please select a week.");
    theForm.week.focus();
    return (false);
  }



  if (theForm.age.selectedIndex < 0)
  {
    alert("Please indicate your age.");
    theForm.age.focus();
    return (false);
  }

  if (theForm.age.selectedIndex == 0)
  {
    alert("Please indicate your age.");
    theForm.age.focus();
    return (false);
  }


  return (true);
}


//-->
