function mOver(cell) 
{
 if (!cell.contains(event.fromElement)) 
 { 
   cell.style.cursor = 'default'; cell.bgColor='#669999'; 
 }
} 
function mOut(cell)
{ 
 if (!cell.contains(event.toElement)) 
 { 
   cell.style.cursor = 'default'; cell.bgColor='#336666'; 
 }
}


