// JavaScript Document
function mail(Anzeige, Pre, Post, Subject, Body)
{
if (Subject) Subject = "?subject=" + Subject;
if (Body) Body = "&body=" + Body;
if (Anzeige == "anzeigen") Anzeige = Pre+'&#64;'+Post;
VarMail = '<a href = "mailto:' + Pre + '&#64;' + Post + Subject + Body + '"><font color="#0071A8">' + Anzeige + '</font></a>';  
document.write(VarMail);
}
