
function mOvr(src,ver){
if(ver==1){clrOver='black';txtColor='#eeeeee';}
if(ver==2){clrOver='#eeeeee';txtColor='#333333';}
if(!src.contains(event.fromElement)){
src.style.cursor='hand';
src.bgColor=clrOver;src.children.tags('a')[0].style.color=txtColor;}}

function mOut(src,ver){
if(ver==1){clrIn='#323232';txtColor='white';}
if(ver==2){clrIn='#D6D6D6';txtColor='black';}
if(!src.contains(event.toElement)){
src.style.cursor='default';
src.bgColor=clrIn;src.children.tags('a')[0].style.color=txtColor;}}

function mClk(src){if(event.srcElement.tagName=='TD'){src.children.tags('A')[0].click();}}