document.addEventListener('DOMContentLoaded', function () {
var host = location.hostname;
document.querySelectorAll('a[href^="http"]').forEach(function (a) {
if (a.hostname && a.hostname !== host) {
a.target = '_blank';
a.rel = (a.rel ? a.rel + ' ' : '') + 'noopener';
}
});
});