Using so many <img src="images/pixel.gif" width="00" height="14"> spacers inTable cells makes it hard to spot your real images. And target="_top" is used in <frameset>s.
Might your problem be here?
Code:
<script type="text/javascript" src="thumbnailviewer2.js" defer="defer"> /*Is this right path to JS file?*/ </script>
or here
<td colspan=5>
<div id="loadarea" style="width: 455px">
<img src="images/09004.jpg" width="450" height="338">
</div>
<h2 />
<div id="loadarea2" style="width: 462px"></div>
</td>
The DD script at http://www.dynamicdrive.com/dynamici...nailviewer2.js has nice features, but looked very complicated to me.
Basically, for a simple version of this effect (e.g., http://www.auntnini.com/sketch/index.htm), what you could do is give your big image a name (such as "holder" or "sue") so you can talk to it. Then in link calling JavaScript
<a href="#nogo" onMouseOver="imgOn('img2')" onClick="document.images['holder'].src = gif2.src; return false">
surrounding clickable thumbnail or text</a>
change image source of big "holder" picture. In the mouseOver instance here, a <script> defined variables and pre-loaded images —
img1 = new Image(); img1.src = 'pic01.jpg'; img2 = new Image(); img2.src = 'pic02.jpg'; — and created the
function imgOn(imgName) {
if (document.images) {
document["holder"].src = eval(imgName + ".src"); }
Bookmarks