<!--
// cell functions
function mOver(cell)
{
   if (!cell.contains(event.fromElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#D0D0D0';
   }
}
function mOut(cell)
{
   if (!cell.contains(event.toElement))
   {
      cell.style.cursor = 'default';
      cell.bgColor = '';
   }
}
//-->
