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', '\u006d\u0061\u0069\u006c\u0074o\u003ata\u006be\u006e\u002es\u0070\u0063\u0040\u0067\u006d\u0061\u0069\u006c\u002ec\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); }