if (document.all) {

	alte = 0 ;
	//if (document.all.menu    	&&  alte < document.all.menu.clientHeight) alte = document.all.menu.clientHeight;
	if (document.all.content 	&&  alte < document.all.content.clientHeight) alte = document.all.content.clientHeight;
	if (document.all.deco 		&&  alte < document.all.deco.clientHeight) alte = document.all.deco.clientHeight;

	//if (document.all.menu) document.all.menu.style.height = alte;
	if (document.all.content)document.all.content.style.height = alte;
	//if (document.all.footer)document.all.footer.style.top = alte;
	
	
	// SOLO PER CONTENT CON IMMAGINE DI SFONDO
	var l_img = 510;
	var h_img = 510;
	var l_div = parseInt(document.all.content.clientWidth)
	var h_div = parseInt(document.all.content.style.height)
	if (l_div < l_img)document.all.content.style.width  = l_img;
	if (h_div < h_img)document.all.content.style.height = h_img;
	

	larg = 0 ;
	if (document.all.deco 		&& larg < document.all.deco.clientWidth) larg = document.all.deco.clientWidth;
	if (document.all.footer 	&& larg < document.all.footer.clientWidth) larg = document.all.footer.clientWidth;
	if (document.all.top 			&& larg < document.all.top.clientWidth) larg = document.all.top.clientWidth;
	if (document.all.topMenu 	&& larg < document.all.topMenu.clientWidth) larg = document.all.topMenu.clientWidth;
	
	if (document.all.deco) document.all.deco.style.width = larg;
	if (document.all.top)document.all.top.style.width = larg;
	//if (document.all.content)document.all.content.style.width = larg;
	//if (document.all.topMenu)document.all.topMenu.style.width = larg;
	//if (document.all.footer)document.all.footer.style.width = larg - 180;
}
