// JavaScript Document

// overi webform
function validateMailForm() {
	if(document.mailform.email.value == "") {
		if(document.mailform.lang.value=='cz') alert("zadejte email!");
		else alert("email address missing!");
	}
	else if(document.mailform.body.value == "") {
		if(document.mailform.lang.value=='cz') alert("zadejte text!");
		else alert("input text!");
	}
	else if(document.mailform.kod.value == "") {
		if(document.mailform.lang.value=='cz') alert("zadejte kod!");
		else alert("input the code!");
	}
	else document.mailform.submit();

}



