function setbgcol(row, mode, row_col)
{
  var new_col = '#99FF00';
  var curcol = row.getAttribute('bgcolor');
  
  //alert(curcol.toUpperCase());
  
  if(mode == 'click')
  {
    if(curcol==row_col) row.setAttribute('bgcolor', new_col, 0); 
    else
    {
      row.setAttribute('bgcolor', row_col, 0);
      row.style.backgroundColor = row_col; 
    }
  }
  if(curcol==row_col)
  {
    if(mode=='over') row.style.backgroundColor = new_col;
    if(mode=='out') row.style.backgroundColor = row_col;
  }
}