
function mOut(cell,color)
{
      cell.style.cursor = 'default';
      cell.bgColor = color;

}

function mOver(cell,color)
{
      cell.style.cursor = 'hand';
      cell.bgColor = color;
}

