// JavaScript Document
function je_vybrana_barva()
{
	if(document.getElementById('barva').value='')
	{
		alert('Musite vybrat barvu!');
	} else {
		document.getElementById('obje').submit();
	}
}
function zvolit_barvu(bar)
{
	document.getElementById('barva').value=bar;
}
