<!--
// Pano Sizing
ratioScreen=screen.width/screen.height;

if (ratioScreen>1.35)
	{
	//alert('maggiore 1.35, ratioScreen:'+ratioScreen);
	wCorrection=40;
	rWH=1.45;
	}
else
	{
	wCorrection=85;
	rWH=1.37;
	}
	
wpano=top.document.body.clientWidth/2+wCorrection;
//hpano=top.document.body.clientHeight/2;

hpano=parseInt(wpano/rWH) //1.35

sh=screen.height;
sw=screen.width;
sR=sw/sh;
//alert('w:'+wpano+' h'+hpano);
//alert('h'+screen.height+' w'+screen.width+' r'+sR+'  w:'+wpano+' h'+hpano+' ratioScreen:'+ratioScreen);

-->
