I Don't really trust that the Editors will do it correctly everytime, especially if you have WYSIWYG controls. I usually add this js to force all external links to open in a new tab to the master page:
$('a').filter(function() {
return this.hostname && this.hostname !== location.hostname;
})
.attr('target','_blank')