/*======================================================
 Text Encode/Decode 1.0 copyright 1998 Mike Serrano
 This script can be freely distributed and modified with
 the conditions that this header remain intact and that
 any modifications must be submitted to MSerrano@bod.net
========================================================*/
function decode(){

  var code= new Array("54 40 59 ", "37 36 37 40 54 ", "54 43 44 55 ", "41 56 38 46 ", "39 36 48 49 ", "51 50 53 49 50 ", "38 56 48 ", "38 56 49 55 ", "51 53 44 38 46 ", "51 40 38 46 40 53 ", "36 54 54 43 50 47 40 ", "51 40 39 50 51 43 44 47 40 ", "39 50 49 42 ", "55 58 36 55 ");

  var base= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9","A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z");
  var wordcode= "";
  var wordLetter= new Array();
  var decodedWord= "";
  var decoded= "";
  var z='';
  var i=0;
  while (z != null){
    z=code[i]
    i++
  }
  var numWords=i-1;
  for (x=0; x<numWords; x++){
    wordcode=code[x]
    i=-1
    while (wordcode.indexOf(" ")>-1){
      i++
      pos=wordcode.indexOf(" ")
      wordLetter[i]=wordcode.substring(0,pos)
      wordLen=i+1
      wordcode=wordcode.substring(pos+1,wordcode.length)
    }
    for (l=0; l<wordLen; l++){
      for (y=0; y<62; y++){
        if (wordLetter[l]==y){
          decodedWord+=base[y]
        }
      }
    }
    decoded+=decodedWord
    decoded+=" "
    decodedWord=""
  }
  return decoded;
}