<!--

$(document).ready(function() {  
    
    $("a.floatBox").fancybox({ 
        'hideOnContentClick': false,
        'titleShow'		: false,
    		'transitionIn'	: 'elastic',
    		'transitionOut'	: 'fade'
    });
    
});

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; 
    }
	
} 
-->

