Using visibility as part of your page style can have a dramatic effect for your readers. This quick example illustrates how easy it is to set up a stack of images that readers can select at will.
So, with that introduction, here's the page and how it's constructed.
<HTML> <HEAD> <TITLE>Visibility Example</TITLE>
Stack the images by placing them with the same absolute position.
Clicking an option starts a search of images, making the checked option visible.
<SCRIPT FOR="options" EVENT="onclick" LANGUAGE="VBScript"><!-- For counter = 0 To document.images.length - 1 document.images(counter).style.visibility = "hidden" If car(counter).checked Then document.images(counter).style.visibility = "visible" End If Next --></SCRIPT>