// Some helper functions used on
// Pierre's Personal Homepage
// -----------------------------
// http://www.pierre.lu
// =============================
// 17/11/2005

// outputs a link to an email address without being visible in the source (avoid spam address collectors)
function writeMail(name, domain, display) {
	displayed=(typeof(display)=="undefined") ? name + "@" + domain : display;
	document.write('<A href=mailto:' + name + '@' + domain + '>' + displayed + '</A>');
}