$(document).ready(function(){
    $('a.new-window').live('click',function(e){
        window.open($(this).attr('href'));
        e.preventDefault();
    });
});

