Use jQuery to open links in a new tab or window when clicked.
$('a[data-rel*=external]').click( function() { window.open(this.href); return false; });