

  function showZoomedImage( hObject, strSmallPath )
  {
    var hZoomer = document.getElementById( '__zoomerBackground' );
    if ( hZoomer ) return false;
    
    var strLargePath = strSmallPath.replace( /\/s_/ig, '/' ); 
    
    var hImage = new Image( );
    hImage.src = strLargePath;
    
    
    hZoomer = document.createElement( 'div' );
    hZoomer.id = '__zoomerBackground';
    hZoomer.className = 'zoomerBackground';
    
    
    var hZoomerContent = document.createElement( 'a' );
      hZoomerContent.id = '__zoomerForeground';
      hZoomerContent.className = 'zoomerForeground';
      hZoomerContent.href = '#';
      hZoomerContent.title = 'Chiudi l\'immagine';
      hZoomerContent.style.backgroundImage = 'url("' + strLargePath + '")';
      hZoomerContent.onclick = function( )
      {
        document.getElementsByTagName('body')[0].removeChild( document.getElementById('__zoomerForeground') );
        document.getElementsByTagName('body')[0].removeChild( document.getElementById('__zoomerBackground') );
        
        return false;
      }
    
    
    document.getElementsByTagName('body')[0].appendChild( hZoomer );
    document.getElementsByTagName('body')[0].appendChild( hZoomerContent );
    
    return true;
  }