function checkForm (t) {

	if (!ChkInput(t.phone, "Telefonní kontakt", '', 1))  return false;
	if (!t.agree.checked) {
		alert ("Vyjádřete souhlas se zpracováním osobních údajů");
		t.agree.focus();
		return false;
	}
	return true;
}

