<!--
// function for menu
function showMenu (id) {
	if (document.getElementById)//IE 4+, N6
	{
		if (document.getElementById("l"+id)) document.getElementById("l"+id).className = "menuOn";
		if (document.getElementById("t"+id)) document.getElementById("t"+id).className = "visible";
	}
	else if (document.all)//IE -4
	{
		if (document.all("l"+id)) document.all("l"+id).className = "menuOn";
		if (document.all("t"+id)) document.all("t"+id).className = "visible";
	}
}