function checkLicAgrmg()
{
	var _checkBox = document.getElementById("LicAgrmnt");

	if(_checkBox == null) {
		// Checkbox not found or not implemented
		return true;
	}

	if(_checkBox.checked) {
		return true;
	} else {
		alert('Musíte souhlasit s obchodními podmínkami');
	}

	return false;
}
