function a_show(a) {
	obj = document.getElementById(a).style.display = "block";
}

function a_hide(a) {
	obj = document.getElementById(a).style.display = "none";
}

