function confirmation(Page,ID) {
if (confirm("Opravdu chcete odstranit tento odstavec? Proces je nevratný.")) {
window.location = Page+"?Akce=delete&Page="+Page+"&ID="+ID;
}
}

function confirmation1(ID) {
if (confirm("Opravdu chcete odstranit tohoto prodejce? Proces je nevratný.")) {
window.location = "/kde-nas-najdete.php?Akce=delete&ID="+ID;
}
}

function confirmation2(ID) {
if (confirm("Opravdu chcete nastavit toto víno jako výchozí?")) {
window.location = "/vino-mesice.php?Akce=main&ID="+ID;
}
}

function confirmation3(ID) {
if (confirm("Opravdu chcete odstranit toto akční víno? Proces je nevratný.")) {
window.location = "/vino-mesice.php?Akce=delete&ID="+ID;
}
}

function confirmation4(ID) {
if (confirm("Opravdu chcete odstranit tento výrobek? Proces je nevratný.")) {
window.location = "/spar-znacka.php?Akce=delete&ID="+ID;
}
}

function confirmation4B(ID) {
if (confirm("Opravdu chcete odstranit tento výrobek? Proces je nevratný.")) {
window.location = "/s-budget-sortiment.php?Akce=delete&ID="+ID;
}
}

function delete_user(Login,ID) {
if (confirm("Opravdu chcete odstranit uživatele " + Login + "?\n Proces je nevratný.")) {
window.location = "/users.php?Akce=delete&ID="+ID;
}
}

function ZmenStavKodu() {
var kod = document.getElementById("Kod")
var typ  = document.getElementById("Typ")
if (typ.value == "Admin") kod.disabled = true
if (typ.value == "Spar") kod.disabled = true
if (typ.value == "Obchod") kod.disabled = false
}

