        function OnLoad_okilab() {
        var searchControl = new GSearchControl();


        var options = new GsearcherOptions();
        options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
        //options.setRoot(document.getElementById("search_results"));

        var searcher = new GwebSearch();
        searchControl.setResultSetSize(GSearch.SMALL_RESULTSET); //LARGE_RESULTSET

        searcher.setUserDefinedLabel("OKILab.jp");
        searcher.setUserDefinedClassSuffix("siteSearch");
        searcher.setSiteRestriction("okilab.jp");
        searchControl.addSearcher(searcher, options);

        searcher = new GwebSearch();
        searcher.setUserDefinedLabel("oki.com");
        searcher.setUserDefinedClassSuffix("siteSearch");
        searcher.setSiteRestriction("oki.com");
        searchControl.addSearcher(searcher);


        var drawoptions = new GdrawOptions();
        drawoptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED);
        drawoptions.setSearchFormRoot(document.getElementById("searchForm"));
        searchControl.draw(document.getElementById("search_results"), drawoptions);
        //searchControl.draw(document.getElementById("searchForm"), drawoptions);

        //searchControl.execute("VW");
        }

        function Alter_OnLoad_okilab() {
		document.getElementById("searchForm").innerHTML="";
		document.getElementById("search_results").innerHTML="";
	}
	//GSearch.setOnLoadCallback(OnLoad_okilab);
	GSearch.setOnLoadCallback(Alter_OnLoad_okilab);
