<!--

function switchList(id) {
	if(!useDHTML) { 
		return; 
	}
	var theList = getObj("list_" + id);
	var theImg = getObj("list_icon_" + id);
	if(!theList) { 
		return; 
	}
	if(theList.style.display=="block") {
		theList.style.display="none";
		theImg.src="images/expand.gif";
	} else {
		theList.style.display="block";
		theImg.src="images/collapse.gif";
	}
}

-->