// SCRIPT MAILTO ANTI SPAM d'apres http://www.toulouse-renaissance.net/c_outils/

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 mailtoAntispam (nomHref, nomAff, sujet) {
	var a = "pdlowr=";
	var m = '&#64;';
	var d = unescape(m);
	var domaine = "rap.prd.fr";
	var aro = nomHref + d + domaine;
	if (nomAff=="") nomAff = aro;
	if (sujet!="") aro = aro + '?subject=' + encodeURI(sujet);
	document.write('<a href='+Crypt(a) + aro + '>');
	document.write(nomAff + '</a>');
}

function mailtoAntispamClair (nomHref, nomAff, sujet) {
	var a = "pdlowr=";
	var m = '&#64;';
	var d = unescape(m);
	var domaine = "rap.prd.fr";
	var aro = nomHref + d + domaine;
	if (nomAff=="") nomAff = aro;
	if (sujet!="") aro = aro + '?subject=' + encodeURI(sujet);
	document.write('<a class=\"clair\" href='+Crypt(a) + aro + '>');
	document.write(nomAff + '</a>');
}