function Validator(theForm)
{
  if (theForm.qf.value == "")
  {
    alert("We need something for First Name or Initial.");
    theForm.qf.focus();
    return (false);
  }
  if (theForm.qn.value == "")
  {
    alert("Last Name is required for the search.");
    theForm.qn.focus();
    return (false);
  }
  pageTracker._trackEvent('Form', 'Submitted');
  return (true);
}

function Check(theForm)
{
  if (theForm.qf.value == "")
  {
    alert("First Name");
    theForm.qf.focus();
    return (false);
  }
  if (theForm.qn.value == "")
  {
    alert("Last Name is required, State is optional");
    theForm.qn.focus();
    return (false);
  }
  pageTracker._trackEvent('Side', 'Submitted');
  return (true);
}