function CreateEm( name, domain, tld)
{
	var str;

	str = "mailto:" + name + "@" + domain + "." + tld;
	window.navigate(str);
}