function ShowMenu(o){
	var obj =	document.getElementById(o);
	obj.style.display=="block"?obj.style.display="none":obj.style.display="block";
}
