function changeVis(elName) {

	var box = document.getElementById(elName);
	
	if (box != null) {
	
		var display = box.style.display;
		
		if (display != "block") {
			box.style.display = "block";
		} else {
			box.style.display = "none";
		}
	}

}