function email(vorat,nachat,titel,id)
{if (titel.length==0){titel = vorat+"@"+nachat;}
if (titel=="email.gif"){titel = "<img src=\"/bilder/email.gif\" style=\"border:none\" alt=\"E-Mail\" />";}
var e_mail=document.createElement("a");
e_mail.setAttribute('href','mailto:'+vorat+'@'+nachat+'');
var title=document.createTextNode(titel);
e_mail.appendChild(title);
var ausgabebereich=document.getElementById(id);
ausgabebereich.appendChild(e_mail);}
