function OpenWindowPhoto(foto, titolo, descrizione)
{ winphoto=window.open('','photo','toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,resizable=yes,width=640,height=480,left=0,top=0');
  with(winphoto.document)
  { open();
    writeln("<html>");
    writeln("<head><title>"+titolo+" - "+descrizione+"</title><script>onBlur=self.focus()</script></head>");
    writeln("<body bgcolor=#993333 topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>");
    writeln("<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td><img src="+foto+"></td></tr></table>");
    writeln("</body>");
    writeln("</html>");
    close();
  }
}