<!-- // ignore if non-JS browser
function Validator(theForm)
{
  var error = "";
  if (theForm.FN.value == "")
  {
    error += "Please fill in your first name\n";
  }
  if (theForm.LN.value == "")
  {
    error += "Please fill in your last name.\n";
  }
   if (theForm.E.value == "")
  {
    error += "You must include an accurate email address for a response.\n";
  }
  if ((theForm.E.value.indexOf ('@',0) == -1 ||
   theForm.E.value.indexOf ('.',0) == -1) &&
   theForm.E.value != "")
  {
    error += "Please verify that your email address is valid.";
  }
   if (error != "")
  {
    alert(error);
    return (false);
  } else {
    return (true);
  }
  }
// -->