function mOvr(src,clrBackOver,clrTextOver)
{
 if (!src.contains(event.fromElement))
 {
  src.style.cursor = 'hand';
  src.bgColor = clrBackOver;
  src.children.tags('A')[0].style.color = clrTextOver;
 }
}

function mOut(src,clrBackIn,clrTextIn)
{
 if (!src.contains(event.toElement))
 {
  src.style.cursor = 'default';
  src.bgColor = clrBackIn;
  src.children.tags('A')[0].style.color = clrTextIn;
 }
}

function mClk(src)
{
 if(event.srcElement.tagName=='TD')
 {
  src.children.tags('A')[0].click();
 }
}


