google.load("search", "1");function OnLoad() {
document.getElementById("searchresult").style.backgroundColor="#FAFAFA";
document.getElementById("searchresult").style.borderWidth="1px";
// Create a search controlvar searchControl = new google.search.SearchControl();var webSearch = new google.search.WebSearch();searchControl.setLinkTarget(google.search.Search.LINK_TARGET_TOP);var options = new google.search.SearcherOptions();options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);options.setRoot(document.getElementById("searchresult"));webSearch.setSiteRestriction('www.buckinstitute.org');searchControl.addSearcher(webSearch,options);searchControl.draw(document.getElementById("searchcontrol"));}google.setOnLoadCallback(OnLoad);