   //load this document into the top window
   if (top !=self) top.location.href = location.href;
  //this is just some misdirection to keep out bots
   var normchars = "abcdefghijklmnopqrstuvwxyz0123456789/:.~";
   var codechars = ":4g/ojr67~k23piwbcds.0z9xh5ytuv1almnef8q";
   function recode(fn,intext){
     newtext = "";
     for (var i = 0; i < intext.length; i++){
       var inchar = intext.charAt(i);
       if (fn == 0) { //encode
         var p = codechars.indexOf(inchar);
         var outchar = normchars.charAt(p);
       }
       if (fn == 1) { //decode
         var p = normchars.indexOf(inchar);
         var outchar = codechars.charAt(p);
       }
       newtext += outchar;
     }
     return newtext;
   }

   function gotoSIULinks(){
     top.location.href = recode(1,'to39/3gedqgo9ce322z/f//ntuz28');
   }
