<html>
<head>
<script language="JavaScript">
Normal_1 = new Image();
Normal_1.src = "select-off.jpg";
Select_1 = new Image();
Select_1.src = "select-on.jpg";
Normal_2 = new Image();
Normal_2.src = "select-off.jpg";
Select_2 = new Image();
Select_2.src = "select-on.jpg";
function Bildwechsel(Bildnr,Bildobjekt)
{
window.document.images[Bildnr].src = Bildobjekt.src;
}
</script>
</head>
<body>
<table>
<tr>
<td>
<a href="#" style="text-decoration:none" onclick="Bildwechsel(0,Select_1);Bildwechsel(1,Normal_1)"> <img src="select-off.jpg" border="0" width="60"></a>
</td>
</tr>
<tr>
<td>
<a href="#" style="text-decoration:none" onclick="Bildwechsel(1,Select_2);Bildwechsel(0,Normal_1)"> <img src="select-off.jpg" border="0" width="60"></a>
</td>
</tr>
</table>
</body>
</html> |