/*
<a href="index.php" title="Link de Exemplo" rel="externo">
Para chamar a função, insira no body  == <script type="text/javascript">createExternalLinks();</script>  */

function createExternalLinks() {
    if(document.getElementsByTagName) {
        var anchors = document.getElementsByTagName('a');
        for(var i=0; i<anchors.length; i++) {
            var anchor = anchors[i];
            if(anchor.getAttribute("href") && anchor.getAttribute('rel')=='externo') { /* <-- É necessário inserir rel="externo" no link */
                anchor.target = '_blank';
                var title = anchor.title + ' (Este link abre em uma nova janela)'; /* <-- Insere este texto no final do Title do link */
                anchor.title = title;
            }
        }
    }
}

