function swapDisplay(id) {
	var el = document.getElementById(id);
	el.style.display = (el.style.display == "block" ? "none" : "block");
}
