function unScramble(eMail1, eMail2, txt, subj, bod){
  var a, b, c, d, f;
  a = eMail1;
  b = eMail2.substring(0, eMail2.length - 5);
  if (txt != '') {
    c = txt;
  } else {
    c = a + '@' + b;
  }
  if (subj != '') {
    d = '?'+"S"+'u'+"b"+'j'+"e"+'c'+"t"+'='+escape(subj);
  } else {
    d = '';
  }
  if (bod != '') {
    if (subj != '') {
      f = '&amp;';
    } else {
      f = '?';
    }
    f = f + "B"+'o'+"d"+'y'+"="+escape(bod);
  } else {
    f = '';
  }
  var l = "<"+"a"+" "+"h"+"r"+"e"+"f"+"="+'"'+"m"+'a'+"i"+'l'+"t"+'o'+":"+a+"@"+b+d+f+'"'+">"+c+"<"+'/'+"a"+'>';
  document.write(l);
}
