/*
Phillip Williams of www.Webcatering.com and Janine Alea of www.Panther-Webworks.com adapted the code to better meet our needs.  Please visit the original sites to procure code for your use.
+++++++++
credits for original code below:
"This tool was originally conceived and written by Tim
Williams of http://www.arizona.edu/ The University of
Arizona  The code to randomly generate a different encryption key each
time the tool is used was written by Andrew Moulden of http://www.siteengineering.com/ Site Engineering
Ltd  This code is distributed as freeware, provided the authors'
credits etc remain as shown.
*/
<!--
coded = unescape("mF%3ExjS%5Dw1m3mB%5Dnx%29s")
codedL = unescape("")
codedS = unescape("")
key = "<@[dH0&T16xbk4Om(vNj{B:!f.Y5qIZXr$7AgE?y-*>n}ua^P,)Gpcsz=Q2#WFlhLe;VDMS3wJ8tUo9K_Ci]R"

function DeMunge()
{
  shift=coded.length
  link=""
  linkL=""
  linkS=""
  for (i=0; i<coded.length; i++) {
    if (key.indexOf(coded.charAt(i))==-1) {
      ltr = coded.charAt(i)
      link += (ltr)
    }
    else {     
      ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
      link += (key.charAt(ltr))
    }
  }
  for (i=0; i<codedL.length; i++) {
    if (key.indexOf(codedL.charAt(i))==-1) {
      ltr = codedL.charAt(i)
      linkL += (ltr)
    }
    else {     
      ltr = (key.indexOf(codedL.charAt(i))-shift+key.length) % key.length
      linkL += (key.charAt(ltr))
    }
  }
  for (i=0; i<codedS.length; i++) {
    if (key.indexOf(codedS.charAt(i))==-1) {
      ltr = codedS.charAt(i)
      linkS += (ltr)
    }
    else {     
      ltr = (key.indexOf(codedS.charAt(i))-shift+key.length) % key.length
      linkS += (key.charAt(ltr))
    }
  }
}

//-->