function toggleFoldout(aTag) {
	contentDiv = aTag.parentNode.getElementsByTagName("DIV")[0];
	display = contentDiv.style.display;
	if (display == "") {
		display = contentDiv.style.display = "block";
	} else {
		display = contentDiv.style.display = "";
	}
}