
function buildAddress(id, user, host)
{
    var node = document.getElementById(id);
    var address = user + '@' + host.join(".");

    var a = document.createElement("a");
    a.setAttribute("href", "mailto:" + address);
    a.appendChild(document.createTextNode(address));

    node.appendChild(a);
}


// eof
