function getEMail(name, domain, text)
{
	var at = "@";
	return "<a href='mailto:" + name + at + domain + "'>" + text + "</a>";
}
