//////http://www.thefutureoftheweb.com/blog/target-blank-xhtml11
$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});
