<!--
function Search_Validator(theForm)
{
	
// Area ------------------------------------------
  if (theForm.Section.value == 0)
  {
    alert("Please select your search area.");
    theForm.Section.focus();
    return (false);
  }
  
// Criteria ------------------------------------------
   if (theForm.Criteria.value == "")
  {
    alert("Please enter your search term.");
    theForm.Criteria.focus();
    return (false);
  }
  
  return (true);
}
//-->
