function novy_element(i) {
	novy_div = document.createElement('div');
	novy_div.setAttribute('id', 'div_input_fotka'+i);
	novy_input = document.createElement('input');
	novy_input.setAttribute('type', 'file');
	novy_input.setAttribute('value', i);
	novy_input.setAttribute('name', "fotka"+i);
	document.getElementById('td_input_fotky').appendChild(novy_div);
	document.getElementById('div_input_fotka'+i).appendChild(novy_input);
}
function kontrolni_pole() {
	novy_input = document.createElement('input');
	novy_input.setAttribute('type', 'hidden');
	novy_input.setAttribute('name', 'kod');
	novy_input.setAttribute('readonly', '');
	novy_input.setAttribute('value', ('3DS' + 'TYL'));
	document.getElementById('div_kod').appendChild(novy_input);
}
