

function showImage( __urlImage )
        {
          var _objImage     = new Image( );
			_objImage.onerror = function( )
          {
            alert( "The image \"" + __urlImage + "\" non esiste o č stata spostata. Artigiano dei Sogni si scusa per l'inconveniente" );
          }

          _objImage.onabort = function( )
          {
            alert( "The image \"" + __urlImage + "\" non puņ essere scaricata. Artigiano dei Sogni si scusa per l'inconveniente" );
          }

          _objImage.onload = function( )
          {
            var _cx     = _objImage.width;
            var _cy     = _objImage.height;
			var _style  = " scrollbars=no,menubar=no,toolbar=no,directories=no,location=no," +
                          "status=no,resizable=yes,width=" + _cx + ",height=" + _cy + "," +
                          "left='0',top='0'"
			var _objWnd = window.open( "", "_blank", _style );

            _objWnd.document.open( "text/html" );
           _objWnd.document.write( "<html><head><title>Artigiano dei Sogni image: clicca sulla foto per chiudere la popup</title></head>" );
            _objWnd.document.write( "<body topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\"" );
            _objWnd.document.write( "<p><a href=\"#\" onclick=\"window.close( );\">" );
            _objWnd.document.write( "<img src=\"" + __urlImage + "\" border=\"0\" alt=\"+\" /></a></p>" );
            _objWnd.document.write( "</body></html>" );
            _objWnd.document.close( );
            _objWnd.focus( );
          }

          _objImage.src     = __urlImage;
}

