//<![CDATA[
google.load('search', '1');

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

    var options = new google.search.SearcherOptions();
    options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
    searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
    searchControl.addSearcher(new google.search.WebSearch(), options);
    searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);

    // tell the searcher to draw itself and tell it where to attach
    searchControl.draw(document.getElementById("searchcontrol"));
}
google.setOnLoadCallback(OnLoad);

//]]>