function ShowMenu(inMenuID,inOnMenuColor,inOffMenuColor)
{
	var	theObj;
	
	for (var i = 1; i <= 4; i++) {
		theObj = document.getElementById("SousMenu" + i);
		if ((theObj != null) && (theObj.style != null)) {
			theObj.style.visibility = ((i == inMenuID) ? "visible" : "hidden");
			theObj = document.getElementById("title" + i);
			if ((theObj != null) && (theObj.style != null)) {
				theObj.style.backgroundColor = ((i == inMenuID) ? inOnMenuColor : inOffMenuColor);
				theObj.style.color = ((i == inMenuID) ? "black" : "white");
				if (i == inMenuID) {
					if (navigator.appVersion.indexOf("MSIE")>0) theObj.style.cursor = "hand";
					else theObj.style.cursor = "pointer";
				}
			}
		}
	}
	theObj = document.getElementById("Cache");
	if ((theObj != null) && (theObj.style != null)) {
		theObj.style.visibility = ((inMenuID != 0) ? "visible" : "hidden");
	}
}
