function aggiusta_img() {
	h = screen.availHeight;
	w = screen.availWidth;
	//alert (w);
	if (w>h) {
		rapporto = w/1100;
		new_w = w;
		//alert(new_w);
		new_h = Math.ceil(825*rapporto);
		spostamento_val  ='top';
		spostamento  = -(new_h-h)/2;
	} else if (h>w) {
		rapporto = h/825;
		new_h = h;
		new_w = Math.ceil(1100*rapporto);
		spostamento_val  ='left';
		spostamento  = - (new_w-w)/2;
	};
	document.getElementById('sfondo').style.width = new_w+'px';
	document.getElementById('sfondo').style.height = new_h+'px';
	if (w>h) {
		prendiElementoDaId('sfondo').style.top = spostamento+'px';
	} else if (h>w) {
		prendiElementoDaId('sfondo').style.left = spostamento+'px';
	}
}
