function ulozit(f)
{
    for (i=1; i<arguments.length; i++) {
        if (f[arguments[i]].value == "") {
            f[arguments[i]].focus();
            alert("Nejsou zadány povinné údaje,\n formulář nelze odeslat!");
            return false;
        }
    }
    return true;
}

function emailCheck(string)
{
    if (string.length > 0) {
        if ((string.indexOf("@") >= 2) && (string.indexOf("@")+6 <= string.length)) {
            return true;
        }
        window.alert("Zadejte platný e-mail.");
    }
    return false;
}

function hesloCheck(f, string)
{
    if ((f["heslo"].value.length > 0) && (f["heslo2"].value.length > 0) && (f["heslo"].value != f["heslo2"].value)) {
        window.alert("Zadané heslo a jeho potvrzení nejsou shodné,\n prosím zadejte shodná hesla.");
    }
    /*if (string.length > 0) {
        if (string.length >= 6) {
            return true;
        }
        window.alert("Heslo musí mít min. 6 znak?.");
    }*/
    return false;
}

