function mOver(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#FFF3C9';
      //window.status=cell.children.tags('A')[0].href;
   }
}

function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#FFFFE9';
      window.status="";
   }
}

function mClick(cell)
{
   if(event.srcElement.tagName=='TD')
   {
      cell.children.tags('A')[0].click();
   }
}
