/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


/**
    replaces the encoded email links
*/
replaceEmails = function()
{
    var list = document.getElementsByTagName("a");
    for (var i = 0; i < list.length; i++)
    {
        if (list[i].className=='email')
        {
            var email = list[i].href;
            email=email.replace(/-kukac-/g, '@');
            email=email.replace(/-pont-/g, '.');
            list[i].href=email;
            email = list[i].innerHTML;
            email=email.replace(/-kukac-/g, '@');
            email=email.replace(/-pont-/g, '.');
            list[i].innerHTML=email;
        }
    }
}

onloadTaskList[onloadTaskList.length] = replaceEmails;