  // ** Mail - nospam **************************************************************

  function nospam_all() {
    for(var i=0; i < document.links.length; ++i) {
      document.links[i].href = (document.links[i].href).replace(/_at_/,"&#064;");
      // if(!window.netscape)
      //   document.links[i].innerText = (document.links[i].innerText).replace(/_at_/,"@");
      // document.write(document.links[i]+"<br>");
      // document.write(document.links[i].innerText+"<br>");
    }
  }

  // mittlere Sicherheit (funktioniert auch ohne JavaScript):
  //  <a href="&#109;&#097;&#105;&#108;&#116;&#58;Beat Rink <xy&#064;crescendox.org>">Beat Rink, xy&#064;crescendox.org</a>
  
  // hohe Sicherheit (funktioniert nur mit JavaScript, und nur im href):
  //  <a href="mailto:Beat Rink <xy_at_crescendox.org>">Beat Rink</a>
  
  // Beispiel mit Subject:
  //  <a href="mailto:Beat Rink <xy_at_crescendox.org>?subject=Hallo Beat!">Beat Rink</a>
