$(document).ready(function () {
    $('a.targetblank').live('click', function(){
        window.open(this.href); // pop a new window
        return false; // return false to keep the actual link click from actuating
    });
});
