<!--
var theRow = null;

function czysc(){
tRow=theRow;

if (tRow!=null) {
var theCells = null;
 // 2. Gets the current row and exits if the browser can't get it
    if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = document.all[tRow].getElementsByTagName('td');
    }
    else if (typeof(tRow.cells) != 'undefined') {
        theCells = tRow.cells;
    }
    else {
        return false;
    }
  // 3. Gets the current color...
    var rowCellsCnt  = theCells.length;
 for (c = 0; c < rowCellsCnt; c++) {
   theCells[c].style.backgroundColor = "#CC2433";
   }
}
}

function set(id) {
var tRow = null;
var theCells = null;


theRow=id;

 tRow=id;
 
    if (typeof(document.getElementsByTagName) != 'undefined') {
        theCells = document.all[tRow].getElementsByTagName('td');
    }
    else if (typeof(tRow.cells) != 'undefined') {
        theCells = tRow.cells;
    }
    else {
        return false;
    }
 
    var rowCellsCnt  = theCells.length;
 for (c = 0; c < rowCellsCnt; c++) {
   theCells[c].style.backgroundColor = "#9AAB20";
   }return true;
}


//-->
