// COPYRIGHT (c) 2002 SLIM WEB ARCHITECTURE :: WWW.SLIMWEB.NL // ALL RIGHTS RESERVED function decrypt(codelist,cnt) { var thiscode, thischar; var defcon=9; codelist=unescape(codelist); var L = codelist.length; var AddrDecoded = ""; for (var x=0; x < L; x++) { thiscode = codelist.charCodeAt(x); thischar = String.fromCharCode(thiscode+cnt+defcon); AddrDecoded += thischar; } return AddrDecoded; } function writeAntiSpamMailto(coded_email,cnt) { var decoded_email=decrypt(coded_email,cnt); var strOutput = '' + decoded_email + ''; document.write(strOutput); } function whiteAntiSpamMailto(coded_email,cnt) { var decoded_email=decrypt(coded_email,cnt); var strOutput = '' + decoded_email + ''; document.write(strOutput); } function wAS(coded_email,cnt) { return decrypt(coded_email,cnt); }