$(document).ready(function() {
    $('a.new-window').click(function() {
        window.open($(this).attr('href'));
        return false;
    });
});