
<!--//
function HideContent(d) {
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	document.getElementById(d).style.display = "block";
}

function ReverseDisplay(d) {
	if(document.getElementById(d).style.display == "none") { 
		document.getElementById(d).style.display = "block"; 
	} else { 
		document.getElementById(d).style.display = "none"; 
	}
}
function surfto(form) {
	var myindex=form.sortby.selectedIndex
	window.open(form.sortby.options[myindex].value, target="_top");
}

//-->
