function ecloak(user,domain,DisplayText){

    var asciiMAILTO = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;";

    if (domain == "h" ){domain = "&#104;&#111;&#116;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;";}
    if (domain == "y" ){domain = "&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;";}
    if (DisplayText == null || DisplayText== "" ){ DisplayText = user +'&#64;' + domain;}

    return '<a href="' + asciiMAILTO + user + '&#64;' + domain + '">' + DisplayText + '</a>';
}

