$(function (){
    $('a[href*=PDF]').each(function(){
        $(this).attr('target', '_blank');
    });
    $('a[href*=pdf]').each(function(){
        $(this).attr('target', '_blank');
    });
});
