<!--
// footer posizionato alla fine del contenuto tramite javascript.
function footer() {
	var Contenuto = document.getElementById('divContenuto');
	Contenuto.style.height = 'auto';
	var x = Contenuto.offsetHeight;

	var Menu = document.getElementById('divMenu');
	Menu.style.height = 'auto';
	if ( Menu.offsetHeight > x ) {x = Menu.offsetHeight};

	Contenuto.style.height = x + 60 + "px";
	Menu.style.height = x + 60 + "px";
	
	/*testata + menù orizzontale + body + 60 + footer*/
	document.body.style.height = 156 + 24 + x + 60 + 91 +  "px";
	var Footer = document.getElementById('divFooter');
	Footer.style.top = 156 + 24 + x + 60 + "px";
}
//-->


