    //<![CDATA[

	this.ox = "";
    function OnLoad() {
      new RawSearchControl();
    }

    /**
     * The RawSearchControl demonstrates how to use Searcher Objects
     * outside of the standard GSearchControl. This includes calling
     * searcher .execute() methods, reacting to search completions,
     * and if you had previously disabled html generation, how to generate
     * an html representation of the result.
     */
    function RawSearchControl() {
      // latch on to key portions of the document
      this.searcherform = document.getElementById("searcher");
      this.results = document.getElementById("results");
      this.searchform = document.getElementById("searchform");

      // create map of searchers as well as note the active searcher
      this.activeSearcher = "FiestaLebanon";
      this.searchers = new Array();

      // create and wire up an instance of GwebSearch and one of
      // GlocalSearch. Note, we disable html generation. We are doing
      // this so that we can demonstrate how to manually create it if
      // needed. Note that we register to handle search completion notifications
      // when searches complete, they are called in the context of this instance
      // of RawSearchControl and they are passed the searcher that just completed

      // wire up a raw FiestaLebanon searcher
      var searcher = new GwebSearch();
      searcher.setSiteRestriction("fiestalebanon.com");
      searcher.setNoHtmlGeneration();
	  searcher.setLinkTarget(GSearch.LINK_TARGET_SELF);
	  searcher.setResultSetSize(GSearch.LARGE_RESULTSET);
      searcher.setSearchCompleteCallback(this,
                                         RawSearchControl.prototype.searchComplete,
                                         [searcher]
                                         );
      this.searchers["FiestaLebanon"] = searcher;

      // now, create a search form and wire up a submit and clear handler
      this.searchForm = new GSearchForm(true, this.searchform);
      this.searchForm.setOnSubmitCallback(this,
                                          RawSearchControl.prototype.onSubmit);
      this.searchForm.setOnClearCallback(this,
                                          RawSearchControl.prototype.onClear);
    }

    /**
     * onSubmit - called when the search form is "submitted" meaning that
     * someone pressed the search button or hit enter. The form is passed
     * as an argument
     */
    RawSearchControl.prototype.onSubmit = function(form) {
      if (form.input.value) {
        // if there is an expression in the form, call the active searcher
        // .execute method
		this.clearResults();
		this.ox = form.input.value;
//		xmlhttpPost("w="+escape(this.ox),"TrackSearch.php","googlesearch");
        this.searchers[this.activeSearcher].execute(form.input.value);
      }

      // always indicate that we handled the submit event
      return false;
    }

    /**
     * onClear - called when someone clicks on the clear button (the little x)
     */
    RawSearchControl.prototype.onClear = function(form) {
      this.clearResults();
	  adjustDivSize();
    }

    /**
     * searchComplete - called when a search completed. Note the searcher
     * that is completing is passes as an arg because thats what we arranged
     * when we called setSearchCompleteCallback
     */
    RawSearchControl.prototype.searchComplete = function(searcher) {

      // always clear old from the page
      this.clearResults();

      // if the searcher has results then process them
      if (searcher.results && searcher.results.length > 0) {

        // print the result titles
        var div = createDiv("Result Titles", "header");
//        this.results.appendChild(div);
        for (var i=0; i<searcher.results.length; i++) {
          var result = searcher.results[i];
          var titleLine = result.title;

          // add in lat,lng for local results
          if (result.GsearchResultClass == GlocalSearch.RESULT_CLASS) {
            titleLine += " (" + result.lat + ", " + result.lng + ")";
          }
          if (result.html) {
            titleLine += " ** html is present **";
          }
          div = createDiv(titleLine);
//          this.results.appendChild(div);
        }

        // now manually generate the html that we disabled
        // initially and display it
        var div = createDiv("<div align=left id=yschinfo><h1>Search Results</h1><p><span>" + searcher.results.length + " Results</span></p></div>", "header");
        this.results.appendChild(div);
        for (var i=0; i<searcher.results.length; i++) {
          var result = searcher.results[i];
          searcher.createResultHtml(result);
          if (result.html) {
            div = result.html.cloneNode(true);
          } else {
            div = createDiv("** failure to create html **");
          }
          this.results.appendChild(div);
        }
		this.results.appendChild(createDiv("<div id=yschssbx> </div>"));
		adjustDivSize();
      }
	  else
	  {
	  	var div = createDiv("<div align=left id=yschinfo><h1>Search Results</h1><p><span>&nbsp;</span></p></div>", "header");
		this.results.appendChild(div);
		this.results.appendChild(createDiv("<div class=yschmsgz>"+
			  "<div class=yschalrtz>We did not find results for: <strong>" + this.ox + "</strong>. Try the suggestions below or type a new query above. </div>"+
			"</div>"+
			"<div class=yschmsgz>"+
			  "<p>Suggestions:</p>"+
			  "<ul>"+
				"<li>Check your spelling.</li>"+
				"<li>Try more general words.</li>"+
				"<li>Try different words that mean the same thing.</li>"+
			  "</ul>"+
			"</div>"))
		this.results.appendChild(createDiv("<div id=yschssbx> </div>"));
	  }
	  document.getElementById("result").style.display = "none";
	  adjustDivSize();
    }

    /**
     * clearResults - clear out any old search results
     */
    RawSearchControl.prototype.clearResults = function() {
      removeChildren(this.results);
    }

    /**
     * Static DOM Helper Functions
     */
    function removeChildren(parent) {
      while (parent.firstChild) {
        parent.removeChild(parent.firstChild);
      }
    }
    function createDiv(opt_text, opt_className) {
      var el = document.createElement("div");
      if (opt_text) {
        el.innerHTML = opt_text;
      }
      if (opt_className) { el.className = opt_className; }
      return el;
    }

    // register to be called at OnLoad when the page loads
    GSearch.setOnLoadCallback(OnLoad);
    //]]>

