//<![CDATA[//スタイルシート有効google.load("search", "1");//スタイルシート無効//google.load("search", "1", {"nocss" : true});function OnLoad() {	// Create a search control	var searchControl = new google.search.SearchControl();	// Create a site search	var siteSearch = new GwebSearch();	//検索結果のタイトル	siteSearch.setUserDefinedLabel("www.modernica73.com");	//検索対象となるウェブサイトURL	siteSearch.setSiteRestriction("http://www.modernica73.com");	//検索結果に表示されるクラス名	siteSearch.setUserDefinedClassSuffix("siteSearch");	searchControl.addSearcher(siteSearch);	//結果表示	searchControl.draw(document.getElementById("searchcontrol"));	//検索結果のリンクを同一ウィンドウで遷移	searchControl.setLinkTarget(google.LINK_TARGET_SELF);	//初期文字列	//searchControl.execute("modernica");	// Add in a full set of searchers（その他の検索）	//var localSearch = new google.search.LocalSearch();	//searchControl.addSearcher(localSearch);	//searchControl.addSearcher(new google.search.WebSearch());	//searchControl.addSearcher(new google.search.VideoSearch());	//searchControl.addSearcher(new google.search.BlogSearch());	// Set the Local Search center point	//localSearch.setCenterPoint("New York, NY");	// Tell the searcher to draw itself and tell it where to attach	//searchControl.draw(document.getElementById("searchcontrol"));	// Execute an inital search	//searchControl.execute("");}google.setOnLoadCallback(OnLoad);//]]>