<!--

/*API BUSCA GOOGLE*/


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

function OnLoad() {
  // Create a search control
  var searchControl = new google.search.SearchControl();
  
   var options = new google.search.SearcherOptions();
  options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
  options.setRoot(document.getElementById("retorno_pesquisa"));
  
    // Add in a WebSearch
  var webSearch = new google.search.WebSearch();
  
  // Restrict our search to pages from our CSE
  webSearch.setSiteRestriction('004381415500207319903:xpv7xpixbg8');

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

 

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

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

}

google.setOnLoadCallback(OnLoad);
    

//-->