var myrules = {
    'p.pdf a' : function(element){
      element.onclick = function(){
        var linkto = this.href;
        this.href = "javascript:void(0);";
        window.open(linkto,'pdf');
      }
    }
  };
  
Behaviour.register(myrules);

