    //siete pregati di lasciare questo javascript con tutti i diritti, grazie.
		//http://www.attivaweb.com/
		
		function showImage( __szImagePath )
    {

      var _img = new Image( );
      _img.src = __szImagePath;

      var _wnd = window.open( "", "_blank", "toolbar=no,statusbar=no,menubar=no,resizable=no" +
                                            ",height=" + _img.height +
                                            ",width=" + _img.width );

      _wnd.document.open( "text/html" );

      _wnd.document.writeln( "<html><body topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">" );
      _wnd.document.writeln( "<img src=\"" + __szImagePath + "\" onClick=\"window.close();\" alt=\"Clicca per chiudere\">" );
      _wnd.document.writeln( "</body></html>" );

      _wnd.document.close( );
      _wnd.focus( );

    }