<!--Hide from browsers of different ability
function switchit(list){
	var listElementStyle=document.getElementById(list).style;
	if (listElementStyle.display=="none"){
		listElementStyle.display="block";
	} else {
		listElementStyle.display="none";
	}
}
//end hide-->
