
<!-- comment out the script to hide it from older browsers

// This function creates a robot-proof e-mail link
// Davide Andrea 2004
function mail(d,u,t){	// Receives the name of the domain and the user, and the text to be displayed (if blank, show the actual address)
	var a = "@"; var b = u + a + d;
	document.write("<a href=" + "ma" + "il" + "to:" + b + ">" + (t == ''? b : t) + "<" + "/a>")
}

// This function asks for an agreement before changing the href of a link to a mailto
// Davide Andrea 2005
function agreeEmailUsage(linkID,theDomain,userID,theMessage) {
	response = confirm(theMessage)
	if (response){
		document.getElementById(linkID).href ='mailto:' + userID + '@' + theDomain
	}
}

//	-->

