var myrules = {
    '.resize' : function(el){
        el.onclick = function(){
            window.open(this.href,'_blank','left=20, top=20, width=700, height=700')
            return false
        }
    }
};

Behaviour.register(myrules);
