function mOvr(src,clrOver) {

 if (!src.contains(event.fromElement)) 
      { src.style.cursor = 'hand'; src.bgColor = clrOver;}
   
 if(event.srcElement.tagName=='TD'){
      event.srcElement.firstChild.style.color='#000000';
       event.srcElement.firstChild.style.textDecoration='underline';
   }
   else {
     event.srcElement.style.color='#000000';
      event.srcElement.style.textDecoration='underline';
 }

   }

function mOut(src,clrIn) { 
   if (!src.contains(event.toElement)) { 
       src.style.cursor = 'default'; src.bgColor = clrIn;
       }
  
     if(event.srcElement.tagName=='TD'){
     event.srcElement.firstChild.style.color='#000000';
    event.srcElement.firstChild.style.textDecoration='none';
   } 
   else {
      event.srcElement.style.color='#000000';
      event.srcElement.style.textDecoration='none';
   }

} 

function mClk(src) { 
   if(event.srcElement.tagName=='TD'){
      src.children.tags('A')[0].click();} 
}

