<!--
function linia(theRow, theRowNum, theAction)
{
    var theCells = null;
   if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        theCells = theRow.cells;
    }
    else {
        return false;
    }
    var rowCellsCnt  = theCells.length;
    var domDetect    = null;

    if (theAction == 'over') {
            klasa = "table_rows2";
        } else { klasa = "table_rows"; }

        var c = null;
        if (domDetect) {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].className=klasa;
            } // end for
        }
        else {
            for (c = 0; c < rowCellsCnt; c++) {
                theCells[c].className=klasa;
            }
        }
    return true;
}


-->
