function podmianOn(id)
{
var color = "#E0F8BA";
if (document.getElementById)
    document.getElementById(id).style.backgroundColor = color;
}


function podmianOut(id)
{
var color = "#F2FCE9";
if (document.getElementById)
    document.getElementById(id).style.backgroundColor = color;
}

