function oznaczk(jmeno,cislo){
if(document.getElementById(jmeno).style.backgroundColor== "#ffcccc" || document.getElementById(jmeno).style.backgroundColor=="rgb(255, 204, 204)"){
		document.getElementById(jmeno).style.backgroundColor="transparent";
		var pozice=document.getElementById('odpform').value.indexOf(jmeno);
		var retezec1=document.getElementById('odpform').value.substring(0,pozice);
		var oddal=1+pozice + (jmeno).length;
		var retezec2=document.getElementById('odpform').value.substring(oddal);
		var retezec=retezec1+retezec2;
		document.getElementById('odpform').value=retezec;
		document.getElementById(cislo+'ozn').value='0';
}
else{
	if(document.getElementById(cislo+'ozn').value=="0"){	
		document.getElementById(jmeno).style.backgroundColor="#ffcccc";
		document.getElementById("odpform").value=document.getElementById("odpform").value+jmeno;
		document.getElementById(cislo+'ozn').value="1";
	}
}
}

function obarvil(barva,cislo){
if(	document.getElementById("barva").value==""){
if(document.getElementById("leva"+cislo).style.background=="")
	{
	document.getElementById("leva"+cislo).style.background=barva;
	document.getElementById("barva").value=barva;
	document.getElementById("kteryl").value=cislo;
	}else
	{
	document.getElementById("leva"+cislo).style.background="";
	document.getElementById("prava"+document.getElementById("odp"+cislo).value).style.background="";
	document.getElementById("barva").value="";
	document.getElementById("kteryl").value="";
	document.getElementById("odp"+cislo).value="";
	}
}
}

function obarvip(cislo){
	if(document.getElementById("barva").value!="" && document.getElementById("prava"+cislo).style.background==""){
		document.getElementById("prava"+cislo).style.background=document.getElementById("barva").value;
		document.getElementById("odp"+document.getElementById("kteryl").value).value=cislo;
		document.getElementById("barva").value="";
		document.getElementById("kteryl").value="";		
	};
}

function resetovat(){
var a=0;
while(document.getElementById('leva'+a)){
document.getElementById('leva'+a).style.background="";
a++;
}

var a=0;
while(document.getElementById('prava'+a)){
document.getElementById('prava'+a).style.background="";
a++;
}

document.getElementById("barva").value="";
document.getElementById("kteryl").value="";		


}
