//decrypt email-adresse die einen * statt @ enthaelt

function mail(m){
   m= m.slice(0,m.indexOf('*'))+"@"+m.slice(m.indexOf('*')+1,m.length);
   window.location.href="mailto:"+m;
   }

