function MakeMailLink(who, where, display)
{
	// who = mail account
	// where = mail server
	// display = display text for mail link. use two quotes (empty string) to display the mail link as the text
	// don't use "who@where" for the display field, since a spambot might intercept it

	document.write('<a href=\"mailto:' + who + '@' + where + '\">');
	if (display == '')
	{
		document.write(who + '@' + where + '</a>');
	}
	else
	{
		document.write(display + '</a>');
	}
	return true;
}