function changer(x) {
 r = '';
 for (i=0;i!=x.length;i++) {
  r += String.fromCharCode(160-x.charCodeAt(i));
 }
 return r;
}
