function mail(name,domain,text) {
	document.write('<a href="mailto:' + name + '@' + domain + '">');
	document.write(text + '</a>');
}