/*
 * If JavaScript is turned on, redirects the search form in the header to the internal results page.
 */

(function() {

var old_onload = window.onload || function(){};

window.onload = function() {
  old_onload();
  document.getElementById("cse-search-box").action = "http://www.action.org/site/search_results/";};

})();