function EmailSchutz(Wert1, Wert2, Wert3)
{
    var emaillink = Wert2;

    EmailFenster = window.open("about:blank", "EmailFenster", "width=370,height=320,left=300,top=300");
    EmailFenster.focus();

    EmailFenster.document.write('<HTML>');
    EmailFenster.document.write('<HEAD>');
    EmailFenster.document.write('<TITLE>Email-Ausgabe</TITLE>');
    EmailFenster.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
    EmailFenster.document.write('</HEAD>');
    EmailFenster.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="font: 70% Arial, Helvetica, sans-serif; color: #45474a; margin: 0px; padding: 0px;">');
    EmailFenster.document.write('<DIV ALIGN=CENTER>');
    EmailFenster.document.write('<table width="298" border="0" cellpadding="0" cellspacing="0">');
    EmailFenster.document.write('<tr><td align="center"><img src="http://www.vg-monheim.de/design/vgm/images/logo2.jpg" border="0" hspace="0" vspace="0"><br><img src="http://www.vg-monheim.de/design/vgm/images/logo3.jpg" border="0" hspace="0" vspace="0"></td></tr>');
    EmailFenster.document.write('<tr><td>&nbsp;</td></tr>');
    EmailFenster.document.write('<tr><td align="center">');
    EmailFenster.document.write('<span style="font-size:1.2em;">Email - mit Link</span><br>(nach Deaktivierung Spam-Schutz)<br><br>');
    EmailFenster.document.write('<A HREF="mailto:' + emaillink + '" style="color: #4c9ddc;"><b>');
    EmailFenster.document.write( emaillink );
    EmailFenster.document.write('</b><br></A>');
    EmailFenster.document.write('</td></tr>');
    EmailFenster.document.write('</table>');
    EmailFenster.document.write('</DIV>');
    EmailFenster.document.write('</BODY></HTML>');
    EmailFenster.document.close();
}
