
function getmt (name, domain) {
  document.write (name+"&#64;"+domain);
}

function getf (name, domain, content, to) {
  var From = document.URL;

  if (!content)
    var content = name+"&#64;"+domain;

  if (to)
    to = to+" ";
  document.write ("<a href='mailto:\""+to+"<"+name+"&#64;"+domain+">\"?subject=\"From "+From+"\"'>"+content+"</a>");
}

function mlink (name, domain) {
  var From = document.URL;
  document.location = "mailto:"+name+"&#64;"+domain+"?subject=\"From "+From+"\"";
  return false;
}