Hola
richardinj
A ver si este otro ejemplo te funciona:
Código PHP:
<html>
<head>
<script type="text/javascript">
function marcar(obj,valor) {
obj.style.background = (valor) ? 'aqua' : '';
}
</script>
</head>
<body>
<table>
<tr onmouseover="marcar(this,true)" onmouseout="marcar(this,false)">
<td>uno</td><td>dos</td>
</tr>
</table>
</body>
</html>
Saludos,