
google.load('search', '1');
    var tabbed;

    function myHandler(q){
      tabbed.execute(q);
      location.href="/Search.aspx" + "?search=" + q;
    }

    function searchComplete(a,b){
      var el=document.getElementById("results");
    }
    

   google.setOnLoadCallback(function(){

        tabbed = new google.search.SearchControl();
        tabbed.setSearchCompleteCallback(this, searchComplete);
        
        var drawOptions = new google.search.DrawOptions();
        drawOptions.setSearchFormRoot(document.getElementById("searchForm"));
        tabbed.draw(document.getElementById("results"), drawOptions);
        
        
      var el=document.getElementById("searchIt");

      el.onsubmit=function(){myHandler(this.searchTerm.value);return false;};

   }, true);   

