Hmm, using the script Image w description tooltip, why not just link to the enlarged image for each of the link's href attribute? For example:
Code:
<a href="enlarged.gif" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">Link 1</a><br>
<a href="enlarged2.gif" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Link 2</a>
This way, when the user moves the mouse over a link, a pop up will display inline on the page showing the desired smaller preview image, then if he/she actually clicks on the link, they're taken to the actual enlarged image. FYI, the preview images are specified as HTML inside the script itself:
Code:
messages[0] = new Array('red_balloon.gif','Here is a red balloon on a white background',"#FFFFFF");
messages[1] = new Array('duck2.gif','Here is a duck on a light blue background.',"#DDECFF");
Bookmarks