$(function(){
    $('a.newWindow').click(function(){
        window.open(this.href, "window", "status=0,toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,width=900,height=560");
        return false;
    });
});


