﻿//*****************************************************
// Cloak E-mail - Nicolai Goncalves
// Set up in web.config publish replacements
//*****************************************************

function cloakMail(recipient, domain, country) { // cloakMail 2.0 
    window.location.href = "mai" + "lto:" + recipient + unescape("%40") + domain + "." + country;
}

function showMail(recipient, domain, country) { // showMail
    if (recipient) {
        window.status = recipient + unescape("%40") + domain + "." + country;
    }
    else {
        window.status = "";
    }
}
