<script language="JavaScript1.2">
<!--
function wxlBgCol(id,farbe) {
if (document.all)
document.all[id].style.backgroundColor=farbe;
else
if (document.getElementById)
document.getElementById(id).style.backgroundColor=farbe;
else
if (document.layers)
document.layers[id].bgColor=farbe;
}
// -->
</script>
<table border=2>
<tr>
<td id="Zelle1" style="position:relative"><a href="ihre.html" onMouseOver="wxlBgCol('Zelle1','red')" onMouseOut="wxlBgCol('Zelle1','transparent')">Beschreibung</font></a></td>
<td id="Zelle2" style="position:relative"><a href="ihre.html" onMouseOver="wxlBgCol('Zelle2','blue')" onMouseOut="wxlBgCol('Zelle2','transparent')">Beschreibung</font></a></td>
</tr>
</table> |