
<!-- *** Fügt eine E-Mail-Adresse ein ***
function InsertEmil(emildom,emilsvr,emilnam,text)
{
    document.write('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;'+emilnam+'@'+emilsvr+'.'+emildom+text+'">'+emilnam+'@'+emilsvr+'.'+emildom+'</a>');
}
//-->

<!-- *** Formularpflichtfelder ***
function chkEingabe() {
    if (((document.form.vorname.value == "Vorname") || (document.form.vorname.value == "") || (document.form.name.value == "Name") || (document.form.name.value == "") || (document.form.email.value == "Ihre@E-Mail") || (document.form.email.value == ""))){
        alert ("Bitte füllen Sie sämtliche Pflichtfelder aus");
        return false;
        }
    }
//-->