  <!--
   function changeClr(rowClr,bgClr) {
    rowClr.firstclr=rowClr.style.backgroundColor;
    rowClr.style.backgroundColor=bgClr;
    rowClr.onmouseout=function() {
     this.style.backgroundColor=this.firstclr;
     window.status='';
    }
   }
  //-->