Danke für die schnelle Nachricht. Ich habe es somit ausprobiert, funzt wieder nicht, d.h. das Bild wird nicht mit Pausen erweitert sondern direkt von 100 auf 150:
<img name="erstesBild" src="snow.bmp" width="100" height="100" onmouseover="mouseover()" onmouseout="mouseout()" />
<script type="text/javascript"><!--
function mouseover() {
frbild = document.getElementById("erstesBild")
while (frbild.width < 150) {
frbild.width += 1;
setTimeout("mouseover()",1000);
}
}
function mouseout() {
frbild = document.getElementById("erstesBild")
frbild.width = 100;
}