    //<![CDATA[

    google.load("search", "1");

    function OnLoad() {
      // Create a search control
      var searchControl = new google.search.SearchControl();

			// create options
			var options = new google.search.SearcherOptions();
			options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
			options.setRoot(document.getElementById("searchresult"));
      // Add in a full set of searchers
      var localsearch = new google.search.WebSearch();
			localsearch.setSiteRestriction("controsult.de");
      searchControl.addSearcher(localsearch,options);

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

    }
    google.setOnLoadCallback(OnLoad);

    //]]>

