function showmenu(elmnt) {
	document.getElementById(elmnt).style.display="inline";
}

function hidemenu(elmnt) {
	document.getElementById(elmnt).style.display="none";
}
