function revealBlock(target) {
	var show_div = document.getElementById(target);
	show_div.style.display = "block";
}