// validates that the field value string has one or more characters in it
function kw_search()
{
   if(document.form.keyword.value == "")
   {
   		alert("Please enter a keyword to search.");
   		return false;
   }
   return true;
}