// a replacement for target="_blank" as its not supported in XHTML Strict
$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});