<script type="text/javascript">
//holyhell.net SPAM-ARMORING SCRIPT
//AUTHOR: Daniel Teichman
//EDITOR: Robin-Ann [blog.robin-ann.net]
//feel free to use this as you wish provided that you keep this header
//radeobfuscated:001=a,002=b; 100=A,101=B; 200=0,201=1; xx=end letter/word/number
var alphaLower = "abcdefghijklmnopqrstuvwxyz";
var alphaCaps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
function decode(data) {
newdata = "";
for (i = 0; i < data.length; i += 3) {
thisLetter = data.substring(i, i + 3);
if (thisLetter.charAt(0) == 0) newdata = newdata + alphaLower.charAt(thisLetter.substring(1,3));
else if (thisLetter.charAt(0) == 1) newdata = newdata + alphaCaps.charAt(thisLetter.substring(1,3));
else newdata = newdata + thisLetter.substring(2,3);
}
while (newdata.indexOf("\\n") >= 0) {
newdata = newdata.replace("\\n", "\n"); }
return newdata;
}
</script>
<script>document.write(decode('011014021004xx xx<000xx 007017004005xx=xx"012000008011019014xx:017014001008013xx-000013013xx@017014001008013xx-000013013xx.002014012xx"xx>017014001008013xx-000013013xx@017014001008013xx-000013013xx.002014012xxxx'));</script>