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

function OnLoad() {

  // create a search control
  var searchControl = new google.search.SearchControl();
//  var customSearchControl = new google.search.CustomSearchControl('010107253926959186928:bcdokhngldo');


  // Add in a WebSearch
  var webSearch = new google.search.WebSearch();

  // Restrict our search to pages from the Cartoon Newtowrk
  webSearch.setSiteRestriction('www.m1.cz');

  // Add the searcher to the SearchControl
  //searchControl.addSearcher(webSearch);


  // web search, open, alternate root
  var options = new google.search.SearcherOptions();
  options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
  options.setRoot(document.getElementById("somewhere_else"));
  //searchControl.addSearcher(new google.search.WebSearch(), options);
  searchControl.addSearcher(webSearch, options);

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

}
google.setOnLoadCallback(OnLoad);
    //]]>

