/* All content copyright ©2004 by Richard N. Holstein */

function eddress(name, domain, type, other, linkText) {
  var at = String.fromCharCode(64);
  var dot = String.fromCharCode(46);
  if (type == "") type = "com";
  if (linkText == "") linkText = name + at + domain + dot + type;
  return "<a href='" + "mai" + "lto" + ":" +
    name + at + domain + dot + type + other +
    "'>" + linkText + "</a>";
} // End of function eddress


function eddressNav(name, domain, type, other, linkText) {
  var at = String.fromCharCode(64);
  var dot = String.fromCharCode(46);
  if (type == "") type = "com";
  if (linkText == "") linkText = name + at + domain + dot + type;
  return "<a class='nav' href='" + "mai" + "lto" + ":" +
    name + at + domain + dot + type + other +
    "'>" + linkText + "</a>";
} // End of function eddress

