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

function OnLoad() {
  // Create a search control
  var searchControl = new google.search.SearchControl();
  searchControl.setResultSetSize("LARGE_RESULTSET");
  
  var myWebSearch = new google.search.WebSearch()
  myWebSearch.setSiteRestriction("http://www.schnaps-achensee.at");
  
  searchControl.addSearcher(myWebSearch);

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

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

google.setOnLoadCallback(OnLoad);
