let links document.querySelectorAll('.Nouxouxv a');
for(i = 0; i < links.length; i++){
links[i].addEventListener('click', function(e){
e.preventDefault();
window.open(e.target.href, '_blank');
}, true);
}
const anchors = document.querySelectorAll('a[href*="#"]');
for (let anchor of anchors) {
if (anchor.getAttribute('href').indexOf('http') == -1) {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const blockID = anchor.getAttribute('href').substr(1);
if (document.getElementById(blockID)) {
document.getElementById(blockID).scrollIntoView({
behavior: 'smooth',
block: 'center'
});
}
});
}
}