Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p>Click on the image:</p>
<img id="myImage" onclick="changeImage()" src="compman_lowres.gif" width="107" height="98">
<script>
function changeImage() {
  var element = document.getElementById("myImage")
  element.src = "compman.gif";
}
</script>
</body>
</html>