$(document).ready(function(){

    $('a.blank').click(function(e){
        window.open($(this).attr('href'));
        return false;
    });
})