function show(id) {
	document.getElementById("heading_" + id).style.display = "none";		
	document.getElementById(id).style.display = "block";
}
function hide(id) {
	document.getElementById(id).style.display = "none";
	document.getElementById("heading_" + id).style.display = "block";		
}

