function loginform_Validator(theForm)
{
  if (theForm.SearchParam.value == "")
  {
    alert("Please enter a search criteria.");
    theForm.SearchParam.focus();
    return (false);
  }
  return (true);
}