function goSearch() {
        
  // catch empty search
  var nonEmpty = /\w+/;
nonEmpty.test(document.searchbox.qt.value);
  if(!nonEmpty.test(document.searchbox.qt.value)) {
     alert('Please supply a search term.');
         return;
  }
  // NOTE: Replace www.bu.edu/your-site-here in the declaration below
  // with the actual web address to your site
   if (document.searchbox.q[0].checked) {
     var searchurl="http://webcat.winnefox.org/web2/tramp2.exe/do_keyword_search/guest?SETTING_KEY=FDL&index=default&hitlist_screen=hitlist.html&record_screen=Record.html&query_screen=home.html&servers=1home&query="+document.searchbox.qt.value+"&GO=Search";
         }  
  
  if (document.searchbox.q[1].checked) {
//     var searchurl="http://beta.menashalibrary.org/search/node?keys="+document.searchbox.qt.value+"&op=Search";
     var searchurl="http://websites.winnefox.org/cgi-bin/search/swish_fonddulac.cgi?query="+document.searchbox.qt.value;
         }
         window.location.href = searchurl;
         return false;
}
