// faxMail Obfuscator adapted from Script 2.1 by Tim Williams - freeware
{
var coded;
var cipher;
var shift;
var faxnum;

coded = "fUY-eWW-XeYe";
cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";

shift=coded.length;
faxnum="";
                              
for (i=0; i<coded.length; i++)
   {
   if (cipher.indexOf(coded.charAt(i))==-1)
      {
      ltr=coded.charAt(i);
      faxnum+=(ltr);
      }
   else 
      {     
      ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
      faxnum+=(cipher.charAt(ltr));
      }           
   }
document.write("Fax: " + faxnum + "<br/>")
}
