// JavaScript Document
var lastid="";
var lastListid="";
function ShowMenu(id)
{
	try{
		thisObj = document.getElementById(id);
		thisListObj = document.getElementById(id + "List");
		if ( lastid != "")
		{
			lastObj = document.getElementById(lastid);
			lastObj.className = "";
			
			lastListObj = document.getElementById(lastid + "List");
			lastListObj.style.display = "none";
		}
		
		thisObj.className = "MenuCurrent";
		thisListObj.style.display = "block";
		lastid = id;
	}
	catch(e){}
	
}
