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



function OnLoad() {  







 var searchControl = new GSearchControl();







    



// Add in a full set of searchers      



var siteSearch = new GwebSearch();



      siteSearch.setUserDefinedLabel("aviation-disaster-lawyers.com");



      siteSearch.setUserDefinedClassSuffix("siteSearch");



      siteSearch.setSiteRestriction("aviation-disaster-lawyers.com"); 



      searchControl.addSearcher(siteSearch);



	  siteSearch.setResultSetSize(GSearch.LARGE_RESULTSET);



	  siteSearch.setLinkTarget(google.search.Search.LINK_TARGET_SELF);



	   



	  



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);    



      



 document.getElementById('search-form').innerHTML = ''; 



}    



google.setOnLoadCallback(OnLoad);



