|
Like any other link
attached to an image, you would simply wrap the PopUp Maker anchors
around the image tag.
For example, starting with a typical text link made by PopUp Maker:
<a href="javascript:doPopUp()">
Click Here
</a>
You would substitute your image tag for
the Click Here
text, like this:
<a href="javascript:doPopUp()">
<img src="yourimage.gif"
width=100 height=100 border=0>
</a>
Obviously, set the src= filename (and path)
and width= and height= in the
<img> tag as appropriate for your image.
This same technique is
typical, also, of how any JavaScript call might be attached to an image in
your page.
|