<html>
<head>
<script language="JavaScript">
<!--
function newWin(foto)
{
nImage = new Image();
nImage.src = foto;
width = screen.width;
height = screen.height;
i = nImage.width;
j = nImage.height;
k = 'no';
if (i > screen.width)
{
i = screen.width - 80;
j = nImage.height + 30;
k = 'yes';
}
if (j > screen.height)
{
j = screen.height - 100;
i = nImage.width + 40;
k = 'yes';
}
if (width == 0 || height == 0)
{
i = 640;
j = 480;
k = 'yes';
}
else
{
i = i + 40
j = j + 30
}
myWin= open("", "_blank",
"width="+i+",height="+j+",status=no,toolbar=no,men ubar=no,scrollbars="+k+",resizable="+k+"");
myWin.document.open();
myWin.document.write("<html><head><title>titolo</title></head><body bgcolor='#C0C0C0' leftmargin='7'><p align='center' style='margin-left: 10; margin-top: 10'><img border='0' src='");
myWin.document.write(foto);
myWin.document.write("'></p></body></html>");
myWin.document.close();}
//-->
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 4</title>
</head>
<body bgcolor="black">
<p align="center">
[img]1.jpg[/img]
[img]2.jpg[/img]
[img]3.jpg[/img]
</p>
</body>
</html>