﻿//REMOVED.  APPEARS TO BE REDIRECTING TO ITSELF IN A LOOP
//function goto_root_path(){
//    var patharray = location.href.split('/');
//    location.href = patharray[0] + '//' + patharray[2];
//    return false; 
//}

//function goto_root_path_for_language(){
//    var patharray = location.href.split("/");
//    if  (patharray[2] != 'localhost:59840'){
//        if (patharray[2].substring(0, 2) != 'us'){
//            goto_root_path(); 
//        }
//    }  
//    return false; 
//}

function runsearch(HeaderFlag){

      if(HeaderFlag == 1){
        location.assign(get_root_path() + "/search/search.aspx?zoom_query=" + document.getElementById('searchbox').value + '&zoom_cat%5B%5D=9');
      }
      else{
        location.assign(get_root_path() + "/search/search.aspx?zoom_query=" + document.getElementById('zoombox').value + '&zoom_cat%5B%5D=9');
      }
      
}

//goto_root_path_for_language();

        
