<!--
function FrontPage_Form1_Validator(theForm)
{

  if (theForm.ID.value == "")
  {
    alert("Please enter a value for the \"Group\" field.");
    theForm.ID.focus();
    return (false);
  }

  if (theForm.ID.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Group\" field.");
    theForm.ID.focus();
    return (false);
  }

  if (theForm.ID.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Group\" field.");
    theForm.ID.focus();
    return (false);
  }
  return (true);
}
//-->