//Javascript Datei zum Entschlüsseln von Email
//Quelle: http://www.htmldog.com/ptg/archives/000063.php
function view_address() {
	address_to_replace=document.getElementById("e").firstChild;
	real_address=address_to_replace.nodeValue.replace("[klammeraffe]", "@");
	address_to_replace.nodeValue=real_address; 
	address_to_replace.parentNode.setAttribute("href", "mailto:"+real_address);
	address_to_replace=document.getElementById("f").firstChild;
	real_address=address_to_replace.parentNode.getAttribute("href").replace("[klammeraffe]", "@");
	address_to_replace.parentNode.setAttribute("href",real_address); 
	address_to_replace=document.getElementById("g").firstChild;
	real_address=address_to_replace.parentNode.getAttribute("href").replace("[klammeraffe]", "@");
	address_to_replace.parentNode.setAttribute("href",real_address); 
}
window.onload = function() { view_address(); }


