\n'); } /////////////////////////////////////////////// // Creating thumbnails and reacting on // clicks on a thumbnail (DOM style) // // A thumbnail image has completed loading /* function onThumbLoaded(ThumbImage){ ThumbImage.parentNode.style.display='block'; } // diplay a thumbnail as selected and deselect previous thumbnail function SelectThumb(thumb){ if (selectedThumb != false) { selectedThumb.className = 'thumbnail'; selectedThumb.title="Click to show this image once again"; } thumb.className = 'thumbnailSelected'; thumb.title=''; selectedThumb = thumb; } */ // Navigate to the image represented by the thumbnail /* function ThumbClicked(thumb){ SelectThumb(thumb); // remember the image section in case we have to switch // the current image first nextImageSection = thumb._imageSection; // do we need to switch to another image? if (currentImageIndex != thumb._imageIndex){ waitingForThumb = false; waitingForImage = true; var fsiviewerObj = InternetExplorer ? fsiviewer : document.fsiviewer; setFSICommand('ImageIndex', thumb._imageIndex); setFSICommand('FSICMD', "SelectImage"); } else { // same image, we just move to the specified image section waitingForThumb = true; setFSICommand('FSICMD', 'Goto:' + nextImageSection); } } */