function mOver(cell) 
{
if (!cell.contains(event.fromElement)) 
{
cell.style.cursor = 'hand'; 
cell.bgColor = '#DEE6F3'; 
cell.style.filter='alpha(opacity=90)';
}
}

function mOut(cell) 
{
if (!cell.contains(event.toElement)) 
{
cell.style.cursor = 'default'; 
cell.bgColor = 'transparent'; 
}
}

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