// <a href="page.html" class="new-window">Page</a>
$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});