// -------------------------------------------------------------------------------------------------------------
function displayEmail (user,domain,title) {
	if (title == '') {title = 'click here to send an email';}
	thisEmailAddress = user + String.fromCharCode (64) + domain;
	document.write('<a href="mailto:' + thisEmailAddress + '" rel="nofollow" title="' + title + '">' + thisEmailAddress + '</a>')
}
