if (doc.images) { theImage = doc.images[name]; } if (theImage) { return theImage; } if (doc.layers) { for (j = 0; j < doc.layers.length; j++) { theImage = FWFindImage(doc.layers[j].document, name, 0); if (theImage) { return (theImage); } } } return (false); } function FindGroup(grp, imageName) { var img = FWFindImage(document, imageName, 0); if (!img) { return (false); } var docGroup = eval("document.FWG_" + grp); if (!docGroup) { docGroup = new Object(); eval("document.FWG_" + grp + " = docGroup"); docGroup.theImages = new Array(); } if (img) { var i; for (i = 0; i < docGroup.theImages.length; i++) { if (docGroup.theImages[i] == img) { break; } } docGroup.theImages[i] = img; if (!img.atRestSrc) { img.atRestSrc = img.src; img.initialSrc = img.src; } } return (docGroup); } function GrpRestore(grp) { var docGroup = eval("document.FWG_" + grp); if (!docGroup) { return; } theImages = docGroup.theImages; if (theImages) { for (i = 0; i < theImages.length; i++) { var curImg = theImages[i]; if (curImg.atRestSrc) { curImg.src = curImg.atRestSrc; } } } } // stop hiding --> function MM_swapImgRestore() { //v2.0 if (document.MM_swapImgData != null) for (var i=0; i<(document.MM_swapImgData.length-1); i+=2) document.MM_swapImgData[i].src = document.MM_swapImgData[i+1]; } function MM_preloadImages() { //v2.0 if (document.images) { var imgFiles = MM_preloadImages.arguments; if (document.preloadArray==null) document.preloadArray = new Array(); var i = document.preloadArray.length; with (document) for (var j=0; j
 
Top T