function mailoc (name, domain, domainExt) {
	var location = 'mailto:' + name + '@' + domain + '.' + domainExt +;
	document.location = location;
}
