
function start_mailto(d, n) {
  document.write('<a href="mailto:' + n + '@' + d + '">');
}

function end_mailto() {
  document.write('</a>');
}

function mailto(d, n, t) {
  start_mailto(d, n);
  document.write(t);
  end_mailto();
}

