isauchegalaberichbrauchschnellhilfe!: Grafiken/Bilder in Tabelle öffnen

Beitrag lesen

Hallo,
ich bin neu in html und hab ein kleines Problem - hab schon den ganzen Tag rum gesucht aber irgendwie gehts nicht:

Wenn man auf die Thumbs in der oberen Tabellenspalte klickt, soll in der mittleren unteren Tabellenzelle das jeweils angelinkte Bild erscheinen !

Hier mein Quellcode:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script language="JavaScript">
<!--
  function fotos(url){document.getElementById("bild").src = url;}
//-->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" height="100%" border="0">
  <tr>
    <td><a href="#" onClick="fotos('photos/001.jpg');">
        <img src="images/star.gif" width="100" height="100">
    </a></td>
    <td><a href="#" onClick="fotos('photos/002.jpg');">
        <img src="images/star2.gif" width="100" height="100">
    </a></td>
    <td><a href="#" onClick="fotos('photos/002.jpg');">
        <img src="images/star.gif" width="100" height="100">
    </a></td>
  </tr>
  <tr>
    <td></td>
    <td>img src="blank.gif" id="bild" width="300" height="300"></td>
    <td></td>
  </tr>
</table>
</body>
</html>

Kann mit irgend jemand helfen - ich steh aufm Schlauch !

Danke  -  Tom