Your copy of thumbnailviewer2.js has been altered somehow, here:
Code:
var imageHTML='<img src="../../KPNEW/'+imagepath+'" style="border-width: 0" />' //Construct HTML for enlarged image
if (typeof dest!="undefined") //Hyperlink the enlarged image?
imageHTML='<a href="../../KPNEW/'+dest+'">'+imageHTML+'</a>'
It should be:
Code:
var imageHTML='<img src="'+imagepath+'" style="border-width: 0" />' //Construct HTML for enlarged image
if (typeof dest!="undefined") //Hyperlink the enlarged image?
imageHTML='<a href="'+dest+'">'+imageHTML+'</a>'
Either restore it or get a fresh copy from the demo page and use that.
Bookmarks