$(document).ready(function() {
    $('#PanelRight a').attr('title','Opens a new browser window');
    
    $('#PanelRight a').click(function(){
        window.open(this.href);
        return false;
    })
});