function expandIt(whichEl) {
	var el = document.getElementById(whichEl)
	el.style.display = (el.style.display == "none" ) ? "" : "none";
}
