// cell-mousover functions
function mover(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#A5A7AF';
   }
}

function mout(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#BCBEC7';
   }
}

function mover2(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#8A8C91';
   }
}

function mout2(cell)
{
   if (!cell.contains(event.toElement))
   {
      //cell.style.cursor = 'default';
      cell.bgColor = '#8A8C91';
   }
}

function mclick(cell)
{
   if(event.srcElement.tagName=='TD')
   {
      cell.bgColor = '#8A8C91';
      cell.children.tags('A')[0].click();
   }
}
//-->
