<!--
function mostracat(id)
{
	var catimg = document.getElementById('CI_' + id);
	var catlst = document.getElementById('CL_' + id).style;
	if (catlst.display == "none")
	{
		catimg.src = "/img/meno.gif";
		catlst.display = "block";
	}else{
		catimg.src = "/img/piu.gif";
		catlst.display = "none";
	}
}
function mostraric(id)
{
	var ricimg = document.getElementById('RI_' + id);
	var riclst = document.getElementById('RL_' + id).style;
	if (riclst.display == "none")
	{
		ricimg.src = "/img/meno_y.gif";
		riclst.display = "block";
	}else{
		ricimg.src = "/img/piu_y.gif";
		riclst.display = "none";
	}
}
//-->