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,texte,color){
	var a, s, n;
	a="pdlowr=";
	m="&#64;";
	d=unescape(m);	
	var nomdomain = "cielmonbebe.com";
	var aro = nom + d + nomdomain;
	if(texte == ''){ texte = aro;	}
	document.write("<a href='"+crypt(a)+aro+"' style='color:"+color+";'>");
	document.write(texte+'</a>');
}

