function makeDivVisible(id) {
	var e = document.getElementById(id);
	e.style.display = "block";
}
