//<![CDATA[

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

function OnLoad() {
   // Create a search control
   var searchControl = new google.search.SearchControl();

   // Add in a full set of searchers

   var webSearch = new google.search.WebSearch();

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

   searchControl.addSearcher(webSearch);

   searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);

   // Set the options to draw the control in tabbed mode
   var drawOptions = new google.search.DrawOptions();
   drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED);


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

   // Execute an inital search
   //searchControl.execute("");
   searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
}
google.setOnLoadCallback(OnLoad);

//]]>
