function isEmpty(txt){if((txt==null)||(txt=='')||(txt==' ')){return true;}else{return false;}}

function sendQuestion(){
if(isEmpty(document.getElementById('dotazjmeno').value)){window.alert('Zadejte prosím jméno');}
else if(isEmpty(document.getElementById('dotazemail').value)){window.alert('Zadejte prosím Váš email');}
else if(isEmpty(document.getElementById('dotaztext').value)){window.alert('Zadejte prosím text zprávy');}
else if(document.getElementById('codex').value!=antispamCode){window.alert('Zadejte prosím kontrolní číslo');}
else{document.getElementById('questionform').submit();}
}