function confirmDelete(delUrl) {
	if (confirm("Naozaj zmazat ?")) {
		document.location = delUrl;
	}
}

function checkform() {
	if (
	document.forms[0].msg_name.value != '' &&
	document.forms[0].msg_surname.value != '' &&
	document.forms[0].msg_address.value != '' &&
	document.forms[0].msg_psc.value != '' &&
	document.forms[0].msg_city.value != '' &&
	document.forms[0].msg_mail.value != ''
	) {
		return true;
	} else {
		alert("Prosím, vyplnte všetky povinné polia");
		return false;
	}
}
	