change target="_blank" to rel="external"
$('a[rel^="external"]').click(function(){ window.open( $(this).attr('href') ); return false; });
<a href="http://www.link.com" rel="external">Link</a>