function WriteEMail(username, domain, subject, body, reftext, lang) {
if (username == "" ) { username = "kontakt"; }
if (domain == "" ) { domain = "msdatec.de"; }
document.write("<a href='mailto:" + username + "@" + domain);
if (subject != "") {
document.write("?subject=" + subject);
if (body != "") { document.write("&body=" + body); }
}
else {
if (body != "") { document.write("?body=" + body); }
}
document.write("'>");
document.write("<img border='0' src='mail.gif' height='10' width='15' alt='");
if (lang == "en") { document.write("Sends an e-mail") } else { document.write("Sendet eine E-Mail") }
document.write("'>&nbsp;");
if (reftext != "") {
document.write(reftext);
}
else {
document.write(username + "@" + domain);
}
document.write("</a>");
}
