function submitContact(frm){
	if(isNull(frm.sName.value)){
		alert("Zadejte Vaše jméno!");
		frm.sName.focus();
		return false;
	}
	if(frm.sCountry.value <= 0){
		alert("Vyberte stát!");
		frm.sCountry.focus();
		return false;
	}
	if(!checkEmail(frm.sEmail.value)){
		alert("Zadejte Vaši e-mailovou adresu!");
		frm.sEmail.focus();
		return false;
	}
	return true;
}
