    google.load('search', '1');

    var gSearchForm;

    function OnLoad() {
      // Dynamically load CSS to override defaults
   /*   var css = document.createElement('link');
      css.href = '../../css/gsearch_green.css';
      css.type = 'text/css';
      css.rel = 'stylesheet';
      document.getElementsByTagName('head')[0].appendChild(css);
    */  
      // Create a search control

      var searchControl = new google.search.SearchControl();

      // site restricted web search with custom label
      // and class suffix
      var options = new google.search.SearcherOptions();
      options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
      options.setRoot(document.getElementById("searchResult"));

      var siteSearch = new google.search.WebSearch();
      siteSearch.setUserDefinedLabel("Global Herbs");
      siteSearch.setUserDefinedClassSuffix("siteSearch");
      siteSearch.setSiteRestriction("http://www.globalherbs.co.uk");
      searchControl.addSearcher(siteSearch,options);

     // gSearchForm.addSearcher(siteSearch,options);


      // Establish a keep callback
//      searchControl.setOnKeepCallback(null, DummyClipSearchResult);

      // tell the searcher to draw itself and tell it where to attach
      searchControl.draw(document.getElementById("searchcontrol"));

      // execute an inital search
      //searchControl.execute("dust");
    }

    function DummyClipSearchResult(result) {}


    google.setOnLoadCallback(OnLoad, true);
