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