 function mOvr(src,clrOver){
         if (!src.contains(event.fromElement)){
                 src.bgColor = clrOver;
                 //src.style.cursor = 'hand';
         }
 }
 function mOut(src,clrIn){
         if (!src.contains(event.toElement)){
                 src.style.cursor = 'default';
                 src.bgColor = clrIn;
         }
 }
function mClk(src,loc){
         //if(event.srcElement.tagName=='TD')
                window.location = loc;
                 //src.children.tags('A')[0].click();
 }
 
 
