function ChangeValue(Action){
   if (Action == "Focus") {
      if (document.frmQckSearch.SearchQuery.value == "Search the Site") {
         document.frmQckSearch.SearchQuery.value = "";
      }
   }else{
      if (document.frmQckSearch.SearchQuery.value == "") {
         document.frmQckSearch.SearchQuery.value = "Search the Site";
      }
   }
}

function ValidateSearch(FormName) {
   if (document.frmQckSearch.SearchQuery.value == "" || document.frmQckSearch.SearchQuery.value == "Search the Site") {
      alert ("Please enter at least one valid keyword in the search field.");
      return false;
   }else{
      return true;
   }
}