function LesbarMachen()
{
  var post = document.getElementById("post");
  var oldText = post.firstChild.nodeValue;
  post.removeChild(post.firstChild);
  post.removeAttribute("style");
  
  var newText = oldText.substr(0,4) + "@" + oldText.substr(16,12) + "." + oldText.substr(35,3);
  
  var adr = document.createElement("a");
  adr.setAttribute("href", "mailto:" + newText);
  adr.appendChild(document.createTextNode(newText));
  post.appendChild(adr);
}

