//encodage du mailto

function maskmail (_elt)
{ 
	ML="t-c/l@fn=<.>romug ph:ei\"a";
	MI="9HAC<E68G>HF40=DF76=5BF41@?E<F0E:2=>G;F76=5BF41@?E<F0E:2=>93H;";
	OT="";
	for(j=0;j<MI.length;j++){
	OT+=ML.charAt(MI.charCodeAt(j)-48);
	}
	//document.write(OT);
	if(document.getElementById(_elt) != null){
		document.getElementById(_elt).innerHTML = (unescape(OT)); 
	}
	
} 



function mail(nom, domaine, classe){
 		 document.write('<a class="'+classe+'" href=\"mailto:' + nom + '@' + domaine + '\">');
 		 document.write( nom + '@' + domaine+'</a>');
}

