Kai: onmouseover

Beitrag lesen

Hallo nochmal,
ich schaffe es einfach nicht, ich habe jetzt so versucht einfach erstmal die Rahmenfarbe zu ändern aber das klappt so auch nicht:
<html>
<head>
<script type="text/javascript">
<!--
function betonen (id,border)
{
   document.getElementById (id).style.borderColor = border;
}
//-->
</script>
</head>
<body>
<table width=100%>
<tr id="zeile"
onmouseover="betonen ('zeile', '#C0C0C0');"
onmouseout="betonen ('zeile', '#FFFFFF');">
<td>TEXT</td>
<td>TEXT</td>
<td>TEXT</td>
<td>TEXT</td>
<td>TEXT</td>
<tr>
</table>
</body>
</html>
...bitte um Hilfe!
Gruß Kai