if ( et_secureId )
{
    var anchors = document.getElementsByTagName('A');
    for ( i in anchors )
    {
        var anchor = anchors[i];
        if ( anchor.className && anchor.className.indexOf('track') > -1 )
        {
            var url = anchor.href;
            var text = anchor.text;
            if (anchor.title) text = anchor.title;  // prefer title (useful, if anchor is around an image)
            anchor.href = 'http://www.etracker.de/lnkcnt.php?et=' + et_secureId + '&url=' + escape(url) + '&lnkname=' + escape(text);
        }
    }
}
