crml=new Array(114,20,19,15,13,12,47,35,16,93,91,27,13,77,75,1,17);

function decrypt(src) {
  car=src[0]^src[1];
  res=String.fromCharCode(car);
  for(i = 1; i < src.length; ++i) {
    car=src[i]^car;
    res = res + String.fromCharCode(car);
  }
  return res;
};

scribe=decrypt(crml);

function emailp(lnktxt) {
  document.write("<a href=\"mailto:",scribe,"\">",lnktxt,"</a>"); 
}
