﻿function GetCourriel(username, domain, tld) {return username + '@' + domain + "." + tld;}
function GetCourrielLink(username, domain, tld, css) {var c=GetCourriel(username, domain, tld); return '<a class="' + css + '" href="' + 'mai' + 'lto' + ':' + c + '">' + c + '</a>';}
function EmbedCourriel(username, domain, tld, css, id) { if (document.getElementById) { document.getElementById(id).innerHTML = GetCourrielLink(username, domain, tld, css); } else if (document.all) { document.all[id].innerHTML = GetCourrielLink(username, domain, tld, css); } }
