//*****************************************************************************
// Mailto
//*****************************************************************************

  function myMailto(user, host) {
	e = user + "@";
	for (i = 0; i < host.length - 1; i++) { e = e + host[i] + "."; }
	e = e + host[host.length - 1] ;
	document.writeln("<a href='mailto:" + e + "'>" + e + "</a>");
  }
