To change the image displayed on a page to images/dog.jpg (for example),
put the following statement
in the onclick attribute of a button:
document.images.AnimalImage.src = "images/dog.jpg";
AnimalImage is the name of the image in the image tag:
<img name="AnimalImage" src="images/cat.jpg" />