// JavaScript Document
function OnLoad() {
      // Create a search control
      var searchControl = new GSearchControl();

	var options = new GsearcherOptions();
	options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
      // Add in a full set of searchers
      searchControl.addSearcher(new GwebSearch(),options);

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

      // execute an inital search
      searchControl.execute("site:queensjournal.ca MCRC");
    }
GSearch.setOnLoadCallback(OnLoad);