<!--
function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }
 
 function checkEntry() {

var name = document.searchform.query.value

   if(name == ""){  //if field is left empty
   alert("Please enter a search criteria")
   return false  // return false value to onSubmit handler
   }
   //else {
   //alert("Thank you for entering your name, " + name)
   //return true
   //}
} 

//-->
