function sendAletter(user, domain, ext) {
	window.location = 'mailto:' + user + '@' + domain + '.' + ext;
	return false;
}
function doAddressLink(id, user, domain, ext) {
	if (document.getElementById('email'+id))
		document.getElementById('email'+id).innerHTML = user + '@' + domain + '.' + ext;
	document.getElementById('link'+id).href = 'mailto:' + user + '@' + domain + '.' + ext;
}
