//<![CDATA[
function OnLoad() {
	var searchControl = new GSearchControl();
	var wsearch = new GwebSearch();
	wsearch.setSiteRestriction("amipaperless.com");
	var options = new google.search.DrawOptions();
	options.setSearchFormRoot(document.getElementById("searchcontrol"));
	var options2 = new google.search.SearcherOptions();
	options2.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
	searchControl.setResultSetSize(GSearch.LARGE_RESULTSET);
	searchControl.addSearcher(wsearch, options2);
	searchControl.draw(document.getElementById("searchresults"), options);
	searchControl.execute("");
}
GSearch.setOnLoadCallback(OnLoad);
//]]>
