/* To hide an email address */

function sendto (domain, account, text) {
	var atsign = String.fromCharCode(64);
	document.write('<a href="mailto:');
	document.write(account + atsign + domain);
	if (text==null || text.length==0) {
		document.write('\">');
		document.write(account + atsign + domain);
	} else
		document.write('\" title=\"'+text+'\">'+text);
	document.write('<\/a>');
}

