Codice PHP:
var Rules = {
    
'.small': function(el){
        
el.onclick=openWinPopUp;
    }
};

window.onload=function(){
     
EventSelectors.start(Rules);
};

var 
observer = {
    
onDestroy : function(eventwin){
        
this.opener=win.opener;
        new 
Effect.Opacity(this.opener,{ 
                
duration0.5
                
transitionEffect.Transitions.linear
                
from0.5to1.0
             
}
        );
        $(
this.opener).onclick=openWinPopUp;
    }
};

Windows.addObserver(observer);

var 
openWinPopUp= function(){
    
this.onclick=null;
    new 
Effect.Opacity(this.id,{ 
            
duration1.0
            
transitionEffect.Transitions.linear
            
from1.0to0.5 
         
}
    );

    if(!
this.image){ //QUI
        
this.loader_id=this.id+'_loader';
        new 
Insertion.After(this,'<div class="loader" id="'+this.loader_id+'"></div>');
        
this.loader=$(this.loader_id);
        
this.offset=Position.cumulativeOffset(this);
        
Element.setStyle(this.loader,{
            
top:this.offset[1]+(this.height-parseInt(Element.getStyle(this.loader,'height')))/2+'px',
            
left:this.offset[0]+(this.width-parseInt(Element.getStyle(this.loader,'width')))/2+'px',
            
display:'block'
        
});

        
this.image=new Image(); //DA QUI
        
this.image.info=this.getAttribute('info');
        
this.image.opener=this.id;
        
this.image.src=this.getAttribute('big_src')+'?'+new Date().getTime();
        
this.image.onload=openWin;
    }else{
        
this.image.onload();
    }
//A QUI
};

openWin=function(){
    
this.loader=$(this.opener+'_loader');
    if(
this.loader)Element.remove(this.loader);
    var 
win = new Window(
        
'big_'+this.opener,{
            
className'dialog'
            
width:this.width
            
height:this.height
            
zIndex100
            
resizabletrue,
            
title:this.info,
            
showEffect:Effect.Appear
            
hideEffectEffect.Fade
            
showEffectOptions:{duration0.2},
            
hideEffectOptions:{duration0.2},
            
maximizable:false,
            
minimizable:false,
            
draggable:true
            
wiredDragfalse
        
}
    );
    
win.getContent().appendChild(this);
    
win.setDestroyOnClose();
    
win.showCenter();
    
win.setZIndex(Windows.maxZIndex+20);
    
win.opener=this.opener;
}; 
Qua c'è tutto, l'importante è che non sia presente il marchio aziendale e il sito, cosa mi puoi dire?

//QUI e //DA QUI //A QUI sono i marker dove si svolge il misfatto