function mail_x(type, box, domain) {
    if (type == "link") {
        document.write("<a href=\"mailto:"+box+"@"+domain+"\">"+box+"@"+domain+"</a>");
    }
    else {
        document.write(box+"@"+domain);
    }
}