
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+" ";
  else
    to = "";
  document.write ("<a href='mailto:"+to+"<"+name+"&#64;"+domain+">?subject=\"From "+From+"\"'>"+content+"</a>");
//  document.write ("<a href='mailto:"+name+"&#64;"+domain+"?subject=\"From "+From+"\"' onClick=\"var c=document.getElementById ('cnt'); if(c) c.src='http://www.nxn.ru/cnt?go='+this.href+'&location='+location.href+'&rnd='+Math.random (1,1000);\">"+content+"</a>");
}

function mlink (name, domain) {
  var From = document.URL;
  document.location = "mailto:"+name+"&#64;"+domain+"?subject=\"From "+From+"\"";
  return false;
}