function checkWord() {
	e1 = document.getElementById('word');
	e2 = document.getElementById('controlSum');
	
	if(e1.value != (e2.value * 3)) {
		window.alert('Chybně zapsané kontrolní číslo');
		return false;
	}
	return true;
}