<!--
// eMail Obfuscator Script 2.1 by Tim Williams - freeware
{
 	coded = "O2Y6PY6.X6MT6MJ@KBTB4SS.8P?OMAX62N=[OYN6 2@4OVEu]";
	cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
	shift=coded.length;
	link="";
	for (i=0; i<coded.length; i++){
		if (cipher.indexOf(coded.charAt(i))==-1){
			ltr=coded.charAt(i);
			link+=(ltr);
		}
		else {
			ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
			link+=(cipher.charAt(ltr));
		}				
	}
	document.write("<a href='mailto:"+link+"'><img style=\"border: 0px solid ; width: 300px; height: 107px;\" alt=\"Scierie Jeuneux 52320 Marbéville\" src=\"images/logo_jeuneux_300_107.gif\"></a>");
}
//-->
