google.load('search', '1');

function OnLoad() {

  // create a search control
  var searchControl = new google.search.SearchControl();

  // web search, open, alternate root
  var options = new google.search.SearcherOptions();
  options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
  // waar ga je de results laten zien
  options.setRoot(document.getElementById("results"));
  
  // koppel options aan nieuwe "search"
//  searchControl.addSearcher(new google.search.WebSearch(), options);

var siteSearch = new google.search.WebSearch();
siteSearch.setUserDefinedLabel("aFrogleap.nl");
siteSearch.setUserDefinedClassSuffix("siteSearch");
siteSearch.setSiteRestriction("afrogleap.nl");

searchControl.addSearcher(siteSearch, options);

  // tell the searcher to draw itself and tell it where to attach
  searchControl.draw(document.getElementById("formulier_search"));

  // execute an inital search
  //searchControl.execute("Ferrari Enzo");
  

}
google.setOnLoadCallback(OnLoad);