$(document).ready(function(){
$('.external').click(function() {
window.open($(this).attr("href"),null);
return false;
})});

$(document).ready(function(){
  $('.dir_mail').each(function(){
    $(this).attr('href',$(this).attr('href').replace('#TRAP#','@'));
    $(this).text($(this).text().replace('#TRAP#','@'));
});
});


