Hola de nuevo.
Te he preparado un código que no utiliza ni id ni name. Creo que puede estar mejor:
Código HTML:
<html>
<head>
<script>
function encender(estafila)
{
estafila.style.backgroundColor="#00ffff";
}
function apagar(estafila)
{
estafila.style.backgroundColor="#00ddff";
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="75%" border="1">
<tr onmouseover="encender(this)" onmouseout="apagar(this)">
<td> </td>
<td> </td>
</tr>
<tr onmouseover="encender(this)" onmouseout="apagar(this)">
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
Espero que te sirva. Saludos,