<!--
// footer posizionato alla fine del contenuto tramite javascript.
function footer() {
	var Contenuto = document.getElementById('centrale');
	Contenuto.style.height = 'auto';
	var x = Contenuto.offsetHeight;

	var MenuSx = document.getElementById('sx');
	MenuSx.style.height = 'auto';
	if ( MenuSx.offsetHeight > x ) {x = MenuSx.offsetHeight};

	var MenuDx = document.getElementById('dx');
	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('footer');
	Footer.style.top = 120 + 30 + x + 90 + "px";
}

//-->
