      google.load('search', '1');

      function init() {
      }

      function submitQuery() {
        window.location = '/googleSearchResults.html?q='
            + encodeURIComponent(
                document.getElementById('query-input').value);
        return false;
      }

      google.setOnLoadCallback(init);

