
 function UnCryptMailto( s )
 {
 	s = s.replace("[punkt]", ".");
     s = s.replace("[at]", "@");        
     return s;
 }

 function mailtoencrypted( s )
 {
     location.href=UnCryptMailto( s );
 }

function popup (url) {
	 fenster = window.open(url, "Popupfenster", "width=1024,height=768,resizable=yes");
	 fenster.focus();
	 return false;
}

