if(typeof(xLocation) == "undefined") xLocation = {};

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