<!--
 var evobj;
 function cellbgcolor(bg){
  evobj=event.srcElement;
   if(evobj.tagName=="TR"||evobj.tagName=="TABLE"){
   return
   }
    while(evobj.tagName!="TD"){
    evobj=evobj.parentElement;
    }
@@
@ evobj.style.backgroundColor=bg;
   evobj.style.color="white";
   }
	
 function bgrecover(bg){
 @evobj.style.backgroundColor=bg;
    evobj.style.color="black";
  }
//-->
