function EspanRiduci (idElemento) {
	if (document.getElementById(idElemento)) {
		var Elemento = document.getElementById(idElemento);
		var Situazione = Elemento.style.display; // verifico se ? "none";
		if (Situazione == 'none') {
			Elemento.style.display = 'block';
			Elemento.style.height = 'auto';
		} else {
			Elemento.style.display = 'none';
			Elemento.style.height = '0px';
		}
	}
}
