
    function OnLoad() {

      var searchControl = new GSearchControl();
		var options = new GsearcherOptions();
        options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
        
	
		var optionsForm = new google.search.DrawOptions();
        optionsForm.setSearchFormRoot(document.getElementById("searchForm"));

      var siteSearch = new GwebSearch();
      siteSearch.setUserDefinedLabel("ValueSupply:サイト内検索");
	  
		siteSearch.setUserDefinedClassSuffix("siteSearch");
		siteSearch.setSiteRestriction("http://valuesupply.jp");
      searchControl.addSearcher(siteSearch, options);
	  searchControl.setLinkTarget(GSearch.LINK_TARGET_SELF);
	  

       // 表示するdivのidを指定
      searchControl.draw(document.getElementById("searchResults"),optionsForm);
	
       // 最初に表示する検索結果。削除可能。
      searchControl.execute("");
    }
    GSearch.setOnLoadCallback(OnLoad);


