

function displayMail (to, domain, ext){
	var address = to + String.fromCharCode(64) + domain + String.fromCharCode(46) + ext;
	document.write ("<a href=\"mailto:" + address + "\">" + address + "</a>");
}

