function TrimString(sInString) {
  sInString = sInString.replace( /^\s+/g, "" );// strip leading
  return sInString.replace( /\s+$/g, "" );// strip trailing
}

function GoSearch() {
       var goQuery;
       var sValue;

       sValue = document.getElementById("zoom_query").value; 

       if ( ( sValue != 'Keyword Search' ) && ( TrimString(sValue) != '') ) {
          goQuery = "/Abencs/search.php?zoom_query=" + sValue;
          window.location.href = goQuery;
       }
}

function QuickSearchClear() {

     if ( document.getElementById("zoom_query").value == 'Keyword Search') {
           document.getElementById("zoom_query").value = '';
     }

}
function QuickPasswordClear() {

   document.getElementById('txtUserID').value = '';
   document.getElementById('txtPassword').value = '';

}
