function setcolor(obj0,sw1) {
  if (sw1 == 0) {
    fgc = '';
    bgc = '';
  } else {
    fgc = '#FF4820';
}
  obj0.style.color = fgc;
  obj0.style.backgroundColor = bgc;
}