function error_check(theForm) {

if (theForm.txtSearch.value == "") {
    alert("Please enter a word or phrase to search for.");
    theForm.txtSearch.focus();
    return (false);
  }
  
return(true);

}