function mail(account, domain, realname)
// Use the mail function to display a real name
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "'>" + realname + "</a>");
}

function xmail(account, domain)
// Use the xmail function to display the actual email address
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "'>" + account + "<img \
    border='0' src='atsign.gif' align='absbottom' \
    alt='@' width='17' height='12'>" + domain + "</a>");
}

