function odeslat() {
    if (document.formular.jmeno.value == "") {
        document.formular.jmeno.focus();
        alert ("Vyplňte prosím Vaše jméno.");
        return false;
        }
    if (document.formular.kontakt.value == "" && (document.formular.email.value == "" || document.formular.email.value == "@")) {
        document.formular.kontakt.focus();
        alert ("Uveďte prosím alespoň jeden kontakt.");
        return false;
        }
    document.formular.tlacitko.value = 'odesílám...';
    document.formular.tlacitko.disabled = true;
    return true;
}

