<head>
<title></title>
</head><body>
<script type="text/javascript">
function anzeigen (bilder) {
if (parent.Hauptframe.document.getElementById("texte").innerHTML != ''){
parent.Hauptframe.document.getElementById("texte").innerHTML = '';
}
parent.Hauptframe.document.getElementById("bild_00").src = bilder;
}
function text (bild,alt) {
parent.Hauptframe.document.getElementById("bild_00").src = bild;
parent.Hauptframe.document.getElementById("texte").innerHTML = alt;
}
</script>
<table border="1">
<tr>
<td align="center">
<img border="0" src="deinBild1.jpg" width="100" height="75" title="Bild 1" onmouseover="anzeigen(this.src)" onclick="text(this.src,this.title);"></td>
</tr>
<tr>
<td align="center">
<img border="0" src="deinBild2.jpg" width="100" height="75" title="Bild 2" onmouseover="anzeigen(this.src)" onclick="text(this.src,this.title);"></td>
</tr>
<tr>
<td align="center">
<img border="0" src="deinBild3.jpg" width="100" height="75" title="Bild 3" onmouseover="anzeigen(this.src)" onclick="text(this.src,this.title);"></td>
</tr>
<tr>
<td align="center">
<img border="0" src="deinBild4.jpg" width="100" height="75" title="Bild 4" onmouseover="anzeigen(this.src)" onclick="text(this.src,this.title);"></td>
</tr>
</table>
</body>
</head> |