$(document).ready(function(){
      $('a.extlink').bind('click', function(e){
        e.preventDefault();
        window.open(this.href);
        });
});

