function ExternalLinks() {
    
    var extlinks = document.getElementsByTagName('a');

    for (var i = 0; i < extlinks.length; i++)
        
        if (extlinks[i].className == 'leavingsitetooltip') 
        {
            extlinks[i].title = 'This page links to other websites. When you click on this link, you will be taken to a website created and maintained by an entity other than Identity Theft 911. The website you are linking to will have legal notices, privacy policies, or other requirements that differ from those of Identity Theft 911, so you may want to review them. We are providing this link for your convenience. Identity Theft 911 does not control or guarantee the accuracy, relevance, timeliness, or completeness of that website.';
        }

        return;
}

window.onload = ExternalLinks;
