function setcolor(obj0,sw1) {
//  tagnam1 = "ahref" + tagno;
  if (sw1 == 0) {
    fgc = '#0000ff';
    fgc = '';
    bgc = '#ffe3b0';
    bgc = '';
  } else {
    fgc = '#ff0000';
    bgc = '#ccffcc';
  }
//  document.getElementById(tagnam1).style.color = fgc;
//  document.getElementById(tagnam1).style.backgroundColor = bgc;
  obj0.style.color = fgc;
  obj0.style.backgroundColor = bgc;
}

