  <!--
  // hide_email.js
  function makelink ()
  {
  var str;

  str = "<a href=\"";
  str = str + String.fromCharCode(109, 97, 105, 108, 116, 111, 58);

  // first part
  str = str + String.fromCharCode(105, 110, 102, 111);

  // the at sign
  str = str + String.fromCharCode(64);

  // the domain part
  str = str + String.fromCharCode(99, 97, 109, 105, 110, 111, 101, 110, 101, 114, 103, 121, 46, 99, 111, 109);

  str = str + "\">e-mail</a>";

  return str;
  }
  -->
