function linksextern() {
    var links = document.getElementById('seo').getElementsByTagName('a');
    
    for (index in links) {
        links[index].setAttribute('onclick', 'window.open(this.href); return false;');
    }
}

window.onload = linksextern;
