$(document).ready(function(){
$('.external').click(function() {
 window.open($(this).attr("href"),null);
 return false;
})
$('.ImageGallery a').click(function() {
 if((window.screen.availWidth>1000) && (window.screen.availHeight>900)) {
   window.open($(this).attr("href").replace('_m.','_l.'),null);
 } else {
   window.open($(this).attr("href"),null);
 }
 return false;
})
$('.dir_mail').each(function(){
    $(this).attr('href',$(this).attr('href').replace('#TRAP#','@'));
    $(this).text($(this).text().replace('#TRAP#','@'));
});
});


