//<![CDATA[
      function OnLoad() {
			var options = new GdrawOptions();
		options.setSearchFormRoot(document.getElementById("searchForm"));

        // for the left control, web is set to large results
        // AFTER adding the searcher to the search control
        // everything else inherits the control's default setting
		var searchControl = new GSearchControl();


        // web search does runs in large mode. set its result size
        // AFTER adding it to the search control
		var siteSearch = new GwebSearch();
		siteSearch.setUserDefinedLabel("GoodOldBoat.com Search Results");
		siteSearch.setSiteRestriction("goodoldboat.com");
        searchControl.addSearcher(siteSearch);
        siteSearch.setResultSetSize(GSearch.LARGE_RESULTSET);

        options.setDrawMode(GSearchControl.DRAW_MODE_TABBED);
		
		GSearch.getBranding(document.getElementById("branding"));
		searchControl.draw(document.getElementById("searchResults"), options);
      }
      GSearch.setOnLoadCallback(OnLoad);
    //]]>