//<![CDATA[

// AllThingsPLC.info Google API Key - ABQIAAAAjxmYC4Z6k1Y8KDrf4v4qzRTltVZ7a2vOYu6psJa3a2ZoSkkxExT0f9Q3hCiA7JyYHpFitF-vVVQS_A

function OnLoad() {
  // Create a search control
  var searchControl = new GSearchControl();
  
  options = new GsearcherOptions();
  options.setExpandMode(GSearchControl.EXPAND_MODE_PARTIAL);
  searchControl.addSearcher(new GwebSearch(), options);

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

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

//]]>