
function vyfarbiTabulku(id){
    table=document.getElementById(id);
    if (table)
    {
    	trs=table.getElementsByTagName('tr');
    	var seda=true;
    	for (i=0; i<trs.length;i++)
    	{
    		seda=!seda;
    		if (seda) trs[i].style.backgroundColor='#FAFAFA';
    		else trs[i].style.backgroundColor='#FFECDF';
    	}
    }
}
