function kontrola() {
    var chyba = false;

    if (document.getElementById('name').value == "") chyba = true;
    if (document.getElementById('vorname').value == "") chyba = true;
    if (document.getElementById('popis').value == "") chyba = true;
    
    if ((document.getElementById('email').value == "") && (document.getElementById('wohnort').value == "")) chyba = true;
    
    if (chyba) {
        alert("Sie haben nicht alle notwendigen Felder ausgefüllt.\nNevyplnili ste všetky povinné polia.");
        return false;
    }
    return true;
}