google.load("search", "1"); 
    function OnLoad() { 
      // Create a search control 
      var searchControl = new google.search.SearchControl(); 
 
	  // create a draw options object so that we 
      // can position the search form root 
      var options = new google.search.DrawOptions(); 
      options.setSearchFormRoot(document.getElementById("searchForm")); 
		
	  // site restricted web search with custom label 
	  // and class suffix 
	  var siteSearch = new google.search.WebSearch(); 
	  siteSearch.setUserDefinedLabel("Search Results"); 
	  siteSearch.setUserDefinedClassSuffix("siteSearch"); 
	  siteSearch.setSiteRestriction("www.implantdentistryofdallas.com");  
	  searchControl.addSearcher(siteSearch); 
	  
      // Tell the searcher to draw itself and tell it where to attach 
      searchControl.draw(document.getElementById("searchResults"), options); 
 
      // Execute an inital search 
      //searchControl.execute("Google"); 
    } 
 
    google.setOnLoadCallback(OnLoad);