function OnLoad() { // Create a search control var searchControl = new GSearchControl(); var siteSearch = new GwebSearch(); siteSearch.setUserDefinedLabel("wmta.org"); siteSearch.setUserDefinedClassSuffix("siteSearch"); siteSearch.setSiteRestriction("wmta.org"); var options = new GsearcherOptions(); options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN); searchControl.addSearcher(siteSearch,options); var drawOptions = new GdrawOptions(); drawOptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED); // drawOptions.setDrawMode(GSearchControl.DRAW_MODE_LINEAR); searchControl.draw(document.getElementById("searchcontrol"), drawOptions); // searchControl.draw(document.getElementById("searchcontrol")); searchControl.execute(""); }