function setGoogle_Search(){
	google.load("search", "1");
	google.setOnLoadCallback(OnLoad);
} 
function OnLoad() {
      // Create a search control
      var searchControl = new google.search.SearchControl();
			// Set the Search Control to get the most number of results
			searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
			// Add in a WebSearch
			var webSearch = new google.search.WebSearch();
			// Restrict our search to pages from the Cartoon Newtowrk
			webSearch.setSiteRestriction('www.finecollectif.com');
      // Add in a full set of searchers
      searchControl.addSearcher(webSearch);


      // Tell the searcher to draw itself and tell it where to attach
      searchControl.draw(document.getElementById("searchcontrol"));

      // Execute an inital search
     // searchControl.execute();
    }
