
function checkQuickSearch(passForm){

if (document.forms[passForm].searchFirst.value.length == 0 && document.forms[passForm].searchLast.value.length == 0){
   alert("Please enter either a first or last name.");
   document.forms[passForm].searchFirst.focus();
   return false;
}

document.forms[passForm].submit();

return true
}