<html>
<head>
<!-- Datei mouseover.html -->
<script language="JavaScript">
function show_a()
{
document.getElementById('ort').innerHTML = "<font color='red'>Maus da</font>";
}
function show_b()
{
document.getElementById('ort').innerHTML = "<font color='green'>Maus weg</font>";
}
</script>
</head>
<body>
<table border="1">
<tr>
<td align="center" onmouseover='show_a()' onmouseout='show_b()'>
<b>Hier die Maus darüber bewegen</b>
</td>
</tr>
<tr><td align='center' id='ort'>Ort der Textanzeige</td></tr>
</table>
</body>
</html>