    google.load("search", "1");
    function OnLoad(keywords) {
    
      if(!keywords){keywords = document.getElementById("query").value;}
      
      // Add in a full set of searchers
      var localSearch     = new google.search.LocalSearch();
      var searchControl   = new google.search.SearchControl();
      
      var inside_site_search_keywords00 = keywords;
      var searchControl02 = new google.search.SearchControl();
      var searchControl03 = new google.search.SearchControl();
      var searchControl04 = new google.search.SearchControl();
      var searchControl05 = new google.search.SearchControl();
      
      var options = new GsearcherOptions();   
      options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
      // Set the Local Search center point
      localSearch.setCenterPoint("New York, NY");
      
/* ---------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------------- */
      var siteSearch_myz = new GwebSearch();
      siteSearch_myz.setUserDefinedLabel("Web検索");
      searchControl02.addSearcher(siteSearch_myz,options);
/* ---------------------------------------------------------------------------- */
      var videoSearch_myz = new GvideoSearch();
      videoSearch_myz.setUserDefinedLabel("YOUTUBEから関連動画");
      searchControl03.addSearcher(videoSearch_myz,options);
/* ---------------------------------------------------------------------------- */
      var blogSearch_myz = new GblogSearch();
      blogSearch_myz.setUserDefinedLabel("全国のブログから関連記事");
      searchControl04.addSearcher(blogSearch_myz,options);
/* ---------------------------------------------------------------------------- */
      var siteSearch_myz = new GwebSearch();
      siteSearch_myz.setSiteRestriction("http://www.the-miyanichi.co.jp/");
      siteSearch_myz.setUserDefinedLabel("地元新聞から関連記事");
      searchControl05.addSearcher(siteSearch_myz,options);
/* ---------------------------------------------------------------------------- */

      searchControl02.draw(document.getElementById("searchcontrol02"));
      searchControl03.draw(document.getElementById("searchcontrol03"));
      searchControl04.draw(document.getElementById("searchcontrol04"));
      searchControl05.draw(document.getElementById("searchcontrol05"));

      // Execute an inital search
      searchControl02.execute(inside_site_search_keywords00);
      searchControl03.execute(inside_site_search_keywords00);
      searchControl04.execute(inside_site_search_keywords00);
      searchControl05.execute(inside_site_search_keywords00);
    }
    //    google.setOnLoadCallback(OnLoad);



