function mm_mOver(cell)

{

   if (!cell.contains(event.fromElement))

   {

      cell.style.cursor = 'hand';

      cell.bgColor = '#9C1414';



   }

}



function mm_mOut(cell)

{

   if (!cell.contains(event.toElement))

   {

      cell.style.cursor = 'default';

      cell.bgColor = '#CE2626';

   }

}



function mm_mClick(cell)

{	

    if(event.srcElement.id=='celda_enlace'){

		event.srcElement.children.tags('A')[0].click();

	};

}