<!--
// footer posizionato alla fine del contenuto tramite javascript.
function footer() {
	var Contenuto = document.getElementById('divContenuto');
	Contenuto.style.height = 'auto';
	var x = Contenuto.offsetHeight;

	var MenuSx = document.getElementById('divSx');
	MenuSx.style.height = 'auto';
	if ( MenuSx.offsetHeight > x ) {x = MenuSx.offsetHeight};

	//var MenuDx = document.getElementById('divDx');
	//MenuDx.style.height = 'auto';
	//if ( MenuDx.offsetHeight > x ) {x = MenuDx.offsetHeight};

	Contenuto.style.height = x + 20 + "px";
	MenuSx.style.height = x + 20 + "px";
	//MenuDx.style.height = x + 20 + "px";
	
	document.body.style.height = 120 + 30 + x + 20 + 50 + "px";
	var Footer = document.getElementById('divFooter');
	Footer.style.top = 120 + 15 + x + 0 + "px";
}

//-->

