   google.load('search', '1');
   google.setOnLoadCallback(function(){

  var options = new google.search.SearcherOptions();
  options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
  options.setRoot(document.getElementById("results"));

 
   var sc = new google.search.SearchControl();
   sc.setResultSetSize(google.search.Search.LARGE_RESULTSET);
   sc.setLinkTarget(google.search.Search.LINK_TARGET_SELF);

   var siteSearch = new google.search.WebSearch();
   siteSearch.setSiteRestriction("008531214013033376885:pmec-bw5e34");

  sc.addSearcher(siteSearch, options);
  sc.setNoResultsString(google.search.SearchControl.NO_RESULTS_DEFAULT_STRING);

  sc.draw(document.getElementById('search'));


   }, true);


