    <!--
    function ecloak(name, domain, text, subject){
      var email,hcode
      hcode='<A HREF=\"mai'
      hcode+='lto:'
      email=name
      email+='@'
      email+=domain
      hcode+=email
      if (subject) {
		hcode+='?subject='
		hcode+=subject}
      hcode+='\">'
      if (text) hcode+=text
      else hcode+=email
      hcode+='</A>'
      document.writeln(hcode)
    }
    // -->
