function nospam() {
mail_coded="124|136|135|141|122|124|141|89|137|122|140|124|122|133|123|122|140|141|130|126|135|71|124|136|134";
	var thiscode, thischar;
	var mail_coded_string = new String(mail_coded);
	var mail_array = mail_coded_string.split('|');
	var L = mail_array.length;
	var mail_decode = "";
	for (var x=0; x < L; x++) {
		thiscode = mail_array[x];
		thischar = String.fromCharCode( thiscode - L );
		mail_decode += thischar;
	}

	var sortie = "<a href='mailto:"+mail_decode+"'>@</a>";
	document.write(sortie);
}




function nospamvis(mail_coded) {
mail_coded="124|136|135|141|122|124|141|89|137|122|140|124|122|133|123|122|140|141|130|126|135|71|124|136|134";

	var thiscode, thischar;
	var mail_coded_string = new String(mail_coded);
	var mail_array = mail_coded_string.split('|');
	var L = mail_array.length;
	var mail_decode = "";
	for (var x=0; x < L; x++) {
		thiscode = mail_array[x];
		thischar = String.fromCharCode( thiscode - L );
		mail_decode += thischar;
	}

	var sortie = "<a href='mailto:"+mail_decode+"'>"+mail_decode+"</a>";
	document.write(sortie);
}

