//<![CDATA[
function OnLoad(zip) {
		// Create a search control
		var searchControl = new GSearchControl();
		// Add in a full set of searchers
		searchControl.addSearcher(new GwebSearch());
		searchControl.addSearcher(new GnewsSearch());
		searchControl.addSearcher(new GblogSearch());
		searchControl.addSearcher(new GvideoSearch());
		var localSearch = new GlocalSearch();
		// Set the Local Search center point
		localSearch.ADDRESS_LOOKUP_ENABLED;
		localSearch.setCenterPoint(zip);
		searchControl.addSearcher(localSearch);
			
		// Create a draw options object so that we can position the search form root
        var options = new GdrawOptions();
        options.setSearchFormRoot(document.getElementById("searchForm"));
		
		// Tell the searcher to draw itself and tell it where to attach
		searchControl.draw(document.getElementById("searchControl"),options);
		// Execute an inital search
		searchControl.execute("");
}	    //]]>
