Saludos,
tengo el siguiente codigo, quisiera por favor me podrian ayudar como optimizarlo con respecto al onmouseover/onmouseout del ultimo tag <tr> de la tabla:
Código php:
Ver original<!-- <?php
?>
<html>
<head>
<title>TOP DE USUARIO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body link="#FFFF00" vlink="#FFFFFF" bgcolor="#f2f2f2">
<table border="0" width="100%" height="100%" align="center" cellspacing="0">
<tr>
<td colspan="7" align="right" valign="top" height="25"></td>
<td colspan="2" width="62%" align="right" valign="bottom" class="tit"><?php echo "Bienvenido [".$_SESSION['username']."]"; ?></td>
</tr>
<tr>
<td colspan="7" height="8"></td>
<td colspan="2" height="8"></td>
</tr>
<tr bgcolor="#727272" class="prod"> /////EN ESTE TAG ESTAN onmouseover/onmouseout
<td width="14%" align="center" onmouseover='this.style.background="red"' onmouseout='this.style.background="#727272"'><a href="portada.php" style="text-decoration: none;" onmouseover="this.style.color='white';this.style.textDecoration='underline'" onmouseout="this.style.color='';this.style.textDecoration='none'" target="mainFrame">Principal</a></td>
<td width="1%" height="28" bgcolor="#F2F2F2"></td>
<td width="14%" align="center" onmouseover='this.style.background="red"' onmouseout='this.style.background="#727272"'><a href="catalogo.php" style="text-decoration: none;" onmouseover="this.style.color='white';this.style.textDecoration='underline'" onmouseout="this.style.color='';this.style.textDecoration='none'" target="mainFrame">Catálogo</a></td>
<td width="1%" height="28" bgcolor="#F2F2F2"></td>
<td width="14%" align="center" onmouseover='this.style.background="red"' onmouseout='this.style.background="#727272"'><a href="miOrden.php" style="text-decoration: none;" onmouseover="this.style.color='white';this.style.textDecoration='underline'" onmouseout="this.style.color='';this.style.textDecoration='none'" target="mainFrame">Mis Ordenes</a></td>
<td width="1%" height="28" bgcolor="#F2F2F2"></td>
<td width="14%" align="center" onmouseover='this.style.background="red"' onmouseout='this.style.background="#727272"'><a href="miCuenta.php" style="text-decoration: none;" onmouseover="this.style.color='white';this.style.textDecoration='underline'" onmouseout="this.style.color='';this.style.textDecoration='none'" target="mainFrame">Mi Cuenta</a></td>
<td width="28%" bgcolor="#F2F2F2" align="right" valign="top" class="tit2"><a href="fin.php" target="_top" style="text-decoration:none;color:black" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'" onclick="return confirma();">Cerrar Sesión</a></td>
</tr>
</table>
</body>
</html> -->
Gracias