function hilightCol(src, on_off){
  oTable = document.getElementById('event_table');
  oCell = src;
//  var bgcolor_on = '#fff16a';
//  var bgcolor_on = '#574000';
//  var bgcolor_on = '#DBC0B2';
//  var bgcolor_on = '#A4613E';
  var bgcolor_on = '#ffffff';
  var bgcolor_off = '#ffffff';
  eval('oTable.rows[0].cells[oCell.cellIndex].style.backgroundColor=bgcolor_'+on_off+';');
  eval('oTable.rows[1].cells[oCell.cellIndex].style.backgroundColor=bgcolor_'+on_off+';');
//  oTable.rows[0].cells[oCell.cellIndex].styles

//alert(oTable.rows[0].cells[oCell.cellIndex].style.backgroundColor);
}