function js_email_link() {
    var SVGNS = "http://www.w3.org/2000/svg";
    var XLINKNS = "http://www.w3.org/1999/xlink";
    var address = document.getElementsByTagName("address")[0];
    var svg = document.createElementNS(SVGNS, "svg");
    svg.style.display = "inline";
    svg.setAttributeNS(null, 'width', '13em');
    svg.setAttributeNS(null, 'height', '1em');
    if (svg.height.animVal.value == 0) {
      var em = parseFloat(document.defaultView.getComputedStyle(address, '').
                          getPropertyValue('font-size'));
      svg.setAttributeNS(null, 'width', 13*em);
      svg.setAttributeNS(null, 'height', em);
    }
    svg.setAttributeNS(null, 'viewBox', '0 0 208 16');

    var a = document.createElementNS(SVGNS, "a");
    a.setAttributeNS(XLINKNS, 'href', '\u006dai\u006ct\u006f\u003a\u0074\u0061\u006b\u0065\u006e\u002e\u0073\u0070\u0063\u002d\u0077\u0077\u0077\u0040g\u006d\u0061\u0069\u006c\u002e\u0063\u006f\u006d');
    var text = document.createElementNS(SVGNS, "text");
    text.appendChild(document.createTextNode("Send Comments"));
    text.setAttributeNS(null, 'x', '0');
    text.setAttributeNS(null, 'y', '16');
    a.appendChild(text);
    svg.appendChild(a);
    address.appendChild(svg);
}