function Decode(s){
var s1=unescape(s.substr(1,s.length-1));
var salt=s.substr(0,1);
var t='';
for(i=0;i<s1.length;i++){
  t+=String.fromCharCode(s1.charCodeAt(i)-salt);
  }
return t;
}

function DoAddy(spanid,codedaddylink) {
var Ele = document.getElementById(spanid);
if (Ele) {
  Ele.innerHTML = Decode(codedaddylink);
  }
}

