<!--
function checkForm(id) {
    id = document.getElementById(id);
    
    if (id.name.value == "") { 
        alert("Uveďte Vaše meno!");
        id.name.focus();
        return false; 
    }
    if (id.tel.value == "" && id.email.value == "") { 
        alert("Uveďte Vaše telefónne číslo, alebo email!");
        id.tel.focus();
        return false; 
    }
    if (id.text.value=="") { 
        alert("Uveďte text správy!");
        id.text.focus();
        return false; 
    }
	
}  

function checkBook(id) {
    id = document.getElementById(id);

    if (id.from.value=="" || id.to.value=="") { 
        alert("Uveďte dátumy!");
        if (id.from.value=="") id.from.focus();
        else id.to.focus();
        return false; 
    }
    if (id.name.value == "") { 
        alert("Uveďte Vaše meno!");
        id.name.focus();
        return false; 
    }
    if (id.tel.value == "" && id.email.value == "") { 
        alert("Uveďte Vaše telefónne číslo, alebo email!");
        id.tel.focus();
        return false; 
    }
}

function showBox(id) {
    id = document.getElementById(id);
    id.style.display = "block";
}
function hideBox(id) {
    id = document.getElementById(id);
    id.style.display = "none";
}
function showPopUp(file) {
        
        var NewWin = window.open(file,"Book","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,top=150,left=150,width=400,height=390");

}
function showPopUpB(file) {
        
        var NewWin = window.open(file,"PopUp","toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,top=150,left=150,width=400,height=250");

}
-->

