<!--
function doSort() {
	// Get Sort Value
	var selIndex = document.getElementById("sortRes").selectedIndex; // Selected Index
	var selText = document.getElementById("sortRes").options[selIndex].text; // Selected text
	var selValue = document.getElementById("sortRes").options[selIndex].value; // Selected Value
	// Remove Previous Sort Variable from URL
	var myURL = location.href;
	myURL = myURL.replace("&sort=", "");
	myURL = myURL.replace("&sort=0", "");
	myURL = myURL.replace("&sort=1", "");
	myURL = myURL.replace("&sort=2", "");
	myURL = myURL.replace("&sort=3", "");
	myURL = myURL.replace("&sort=4", "");
	myURL = myURL.replace("&sort=5", "");
	myURL = myURL.replace("&sort=6", "");
	// Redirect
	window.location = myURL + "&sort=" + selValue;
}
//-->