$(document).ready(function(){
	$('a.targetBlank').click(function(){
        window.open(this.href);
        return false;
    });
});
