function chgtxt(obj,linkid,cellcolor,linkcolor) {
  if(document.getElementById)  {
    document.getElementById(obj.id).style.backgroundColor=cellcolor
    document.getElementById(linkid).style.color=linkcolor
  }
}

