if(typeof(xLocation) == "undefined") xLocation = {};xLocation.Search = {};xLocation.getSearch = function(){// Private	if(location.search.length > 0){		var s = location.search.substring(1).split("&");		for(var i = 0; i < s.length; i++){			s[i] = s[i].split("=");			this.Search[s[i][0]] = unescape(s[i][1]);		}	}};xLocation.getSearch();
