function crypt(s) {
	r='';
	for(i=0;i<s.length;i++){
	n=s.charCodeAt(i);
	if (n>=8364){
	n = 128;
	} 
	r += String.fromCharCode(n-3);
	}
	return r;
	}

function antispam(nom){
	var a, s, n;
	a="pdlowr=";
	m="&#64;";
	d=unescape(m);	
	var nomdomain = "newmilleniumorchestra.com";
	var aro = nom + d + nomdomain;	
	document.write('<a href='+crypt(a)+aro+'>');
	document.write(aro+'</a>');
}
