﻿    
    google.load('search', '1.0');

    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_CLOSED);
        var options_part = new google.search.SearcherOptions();
        options_part.setExpandMode(google.search.SearchControl.EXPAND_MODE_PARTIAL);


      // Add in a full set of searchers
        searchControl.addSearcher(new google.search.WebSearch(), options_part);
        searchControl.addSearcher(new google.search.VideoSearch(), options);
        searchControl.addSearcher(new google.search.BlogSearch(), options);
        searchControl.addSearcher(new google.search.NewsSearch(), options);
        searchControl.addSearcher(new google.search.ImageSearch(), options);

      // Set the Local Search center point
     // localSearch.setCenterPoint("New York, NY");

      // tell the searcher to draw itself and tell it where to attach
      searchControl.draw(document.getElementById("searchcontrol"));

      // execute an inital search
      searchControl.execute("\"Daniel Ercha\"");
    }
    
    google.setOnLoadCallback(OnLoad, true);

