function mailto(domain,usrname,anchortext)
{
  document.write('<a href="mailto:'+usrname+'&#64'+domain+'">')
  if (!anchortext)
  {
	  document.write(usrname+'&#64'+domain+'</a>')
  }
  else
  {
	  document.write(anchortext)
  }
}
