function MakeFocusedButton(bunka)
{
	bunka.style.backgroundColor='#00AAFF';
		// nefunguje když je link protože ten přebyje tuto barvu 
		//bunka.style.color='#EF0010';
	bunka.style.border="1 solid black";
	//bunka.style.fontStyle = "italic";
	//document.stylesheets['visitedL'].disabled = true;
}

function MakeUnfocusedButton(bunka)
{
	bunka.style.backgroundColor='#0099FF';
	bunka.style.color='#FFFFFF';
	bunka.style.border = "none";
	//bunka.style.fontStyle = "normal";
}

function MakeFocusedButton1(bunka)
{
	bunka.style.backgroundColor='#00AAFF';
		// nefunguje když je link protože ten přebyje tuto barvu 
		//bunka.style.color='#EF0010';
	bunka.style.border="1 solid black";
	//bunka.style.fontStyle = "italic";
	//document.stylesheets['visitedL'].disabled = true;
}

function MakeUnfocusedButton1(bunka)
{
	bunka.style.backgroundColor='#99CCFF';
	bunka.style.color='#FFFFFF';
	bunka.style.border = "none";
	//bunka.style.fontStyle = "normal";
}