<!-- Begin

function fitWindowSize(immagine,descrizione) 
{
image2 = new Image();
image2.src = immagine;
descri = descrizione;


   //setTimeout("Go()",1000);
attendi();

}

function attendi() 
{


   if (image2.width == 0) {
setTimeout("attendi()",500);
} 
else {
   Go();
}



}


        function Go() {
//image2 = new Image();
//image2.src = immagine1;
var larg = image2.width;
var lung = image2.height;

width = image2.width;
height = image2.height;
width1 = width;
height1 = height ;
LeftPosition = (screen.width)?(screen.width-width)/2:0;
TopPosition = (screen.height)?(screen.height-height)/2:0;

// document.write(width,height);
ceo = window.open('','','width='+width1+',height='+height1+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no, resizeable=no,');
ceo.document.write("<html><head><title>DOLCEFARNIENTE.IT - OUTSIDE</title></head><body bgcolor='black' leftmargin='0' topmargin='0' onload='Focus();' onblur='self.close();focus();'><img SRC='"+image2.src+"' border='0'></body></html>")
image2.width = 0;

        }

//  End -->
