// JavaScript Document

function show_m(id) {
	document.getElementById(id).style.visibility="visible";
}
function hide_m(id) {
	document.getElementById(id).style.visibility="hidden";
}
