<!--
// footer posizionato alla fine del contenuto tramite javascript.
function footer() {
	if(document.getElementById('divContenuto')){
			var Contenuto = document.getElementById('divContenuto');
		}
	else {
		var Contenuto = document.getElementById('divContenutoHome');
	}
	Contenuto.style.height = 'auto';
	var x = Contenuto.offsetHeight;

	var MenuSx = document.getElementById('divMenuSx');
	MenuSx.style.height = 'auto';
	if ( MenuSx.offsetHeight > x ) {x = MenuSx.offsetHeight};

	var MenuDx = document.getElementById('divMenuDx');
	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 + 120 + "px";
	var Footer = document.getElementById('divFooter');
	Footer.style.top = 250 + 30 + x + 20 + "px";
}

//-->
