// JavaScript Document
function nuovaFinestra(cPicture,descrizione) 
{ 
day = new Date(); 
now = day.getTime(); 
img = new Image; 
img.src= cPicture; 
posh=Math.floor((screen.height-img.height)/2); 
posw=Math.floor((screen.width-img.width)/2);
eval("NewWin=window.open('','"+now+"','HEIGHT='+img.height+',WIDTH='+img. width+',scrollbars=no,resizable=yes,top='+posh+',left='+posw);"); 
NewWin.document.write ("<HTML><HEAD><TITLE>");
NewWin.document.write (descrizione); 
NewWin.document.write (" - I Sardi</TITLE>"); 
NewWin.document.write ("</HEAD>\n"); 
NewWin.document.write ("<BODY OnLoad='this.focus("); 
if (document.layers) { 
NewWin.document.write (");this.resizeTo("); 
NewWin.document.write (img.width); 
NewWin.document.write (","); 
NewWin.document.write (img.height); 
} 
NewWin.document.write (")' BGCOLOR=#FFFFFF MARGINWIDTH='0' MARGINHEIGHT='0' TOPMARGIN='0' LEFTMARGIN='0'>\n"); 
NewWin.document.write ("<CENTER><IMG SRC="); 
NewWin.document.write (cPicture); 
NewWin.document.write (">"); 
NewWin.document.write ("</CENTER></BODY></HTML>"); 
NewWin.document.close(); 
}
