function Mailto(user, domain)
{
// The hypertext must be created in HTML so that if the browser has scripting disabled,
// the E-mail address will be displayed in human-readable (but not machine-recognizable 
// form.  This necessitates using characters to represent the "@" sign, or a graphic, 
// such as 'at.gif' (see HTML file). 
	document.write('<a class=link_body href=\"mailto:' + user + '@' + domain + '\">');
}
