<!--
function FrontPage_Form1_Validator(theForm)
{if (theForm.Contact_FirstName.value == "")
  {
    alert("Please enter a value for the \"Contact_FirstName\" field.");
    theForm.Contact_FirstName.focus();
    return (false);
  }

  if (theForm.Contact_LastName.value == "")
  {
    alert("Please enter a value for the \"Contact_LastName\" field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  if (theForm.Contact_Email.value == "")
  {
    alert("Please enter a value for the \"Contact_Email\" field.");
    theForm.Contact_Email.focus();
    return (false);
  }

  if (theForm.Contact_URL.value == "")
  {
    alert("Please enter a value for the \"Contact_URL\" field.");
    theForm.Contact_URL.focus();
    return (false);
  }

  if (theForm.Contact_URL.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Contact_URL\" field.");
    theForm.Contact_URL.focus();
    return (false);
  }

  if (theForm.Description.value == "")
  {
    alert("Please enter a value for the \"Description\" field.");
    theForm.Description.focus();
    return (false);
  }

  if (theForm.DestinationURL.value == "")
  {
    alert("Please enter a value for the \"DestinationURL\" field.");
    theForm.DestinationURL.focus();
    return (false);
  }
  return (true);
}
//-->