One Button One Screen
Two Buttons One Screen

Back

Clicker
Screen1

1) First you need to make three images.

2) Save all the images, GIFs are good, I always work in them.
1a) clicker1.gif
1b) screen1.gif
1c) screen2.gif
Create a new html document.

3) Choose a link, so when the user clicks on the clicker they are taken to that addy.

4) (TO KEEP IT SIMPLE GO ALONG WITH THIS UNTIL YOU GET THE HANG OF THE MOUSE OVER PROCESS)
Name Image 1a) clicker1
Name Image 1b) screen1
Name Image 1c) screen2

5) Put this script into your html document.

<A HREF="YourUrlHere.html" onmouseover="document.images['screen1'].src='screen2.gif'" onmouseout="document.images['screen1'].src='screen1.gif'">

<IMG SRC="clicker1.gif" BORDER=0 HEIGHT=112 WIDTH=64>

</A><BR>

<IMG SRC="screen1.gif" NAME="screen1" BORDER=0 HEIGHT=116 WIDTH=116>

6) Done!