google.load("search", "1");    
function OnLoad() {  

 var searchControl = new GSearchControl();

    
// Add in a full set of searchers      
var siteSearch = new GwebSearch();
      siteSearch.setUserDefinedLabel("McNeeseTrotsky.com");
      siteSearch.setUserDefinedClassSuffix("siteSearch");
      siteSearch.setSiteRestriction("mcneesetrotsky.com"); 
      searchControl.addSearcher(siteSearch);
	  siteSearch.setResultSetSize(GSearch.LARGE_RESULTSET);   
	  
var drawOptions = new GdrawOptions();
        drawOptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED);
		drawOptions.setSearchFormRoot(document.getElementById("searchForm"));
        searchControl.draw(document.getElementById("searchcontrol"), drawOptions);
		var phrase = document.getElementById('phrase').value
        searchControl.execute(phrase);    
      
  
}    

google.setOnLoadCallback(OnLoad);