function changeText(text) {
	document.getElementById('header2').innerHTML = text;
}

function highlightRow(row) {
	row.style.background = 'url(images/bg_jidelnicek_act.gif)';
	//row.style.color = '#8CBC04';
}

function lowlightRow(row) {
	row.style.background = 'url(images/bg_jidelnicek.gif)';
	//row.style.color = '#0079B7';
}

function confirmDel() {
	return confirm("Opravdu chcete smazat tento záznam?");
}

