// $Id: em.js,v 1.1 2006-11-20 23:35:50 jcollins Exp $

// Render an email address
function em (name, host)
{
  document.write("<a href=" + "mail" + "to:" + name + "@" + host + ">"
	             + name + "@" + host + "<\/a>")
}

// Render an email address with the specified text in the link
function emt (name, host, text)
{
  document.write("<a href=" + "mail" + "to:" + name + "@" + host + ">"
	             + text + "<\/a>")
}
