function pokazText(id)
{
    if( id != _AKTUALNA )
    {
	   if( ( _AKTUALNA != 0  ) && ( $('span'+_AKTUALNA).style.display != 'none' ) )
	   {
		  Effect.BlindUp( 'span'+_AKTUALNA , { duration: 1 } );
	   }
	   //var wysokosc = $('span'+id).getHeight();
	   //$('span'+id).setStyle({ height: wysokosc+'px' });
	   Effect.BlindDown( 'span'+id , { duration: 1 } );
	   _AKTUALNA = id;
    }
    else
    {
        Effect.BlindUp( 'span'+_AKTUALNA , { duration: 1 } );
    }
}

var _AKTUALNA = 0;