var fDesc=new Array(); fDesc[0] = "This shell extensions will show you a thumbnail of an image file, as well as its dimensions, when you right click on a filename inside Explorer.

Extension uses FreeImage, and currently supports: BMP,DDS,Dr. Halo,GIF,HDR,ICO,IFF,JBIG,JNG,JPEG/JIF,KOALA,LBM,Kodak PhotoCD,MNG,PCX,PBM,PGM,PNG,PPM,PhotoShop,Raw Fax G3,SGI,Sun RAS,TARGA,TIFF,WBMP,XBM,XPM"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }