var fDesc=new Array(); fDesc[0] = "ZipExplorer automatically lists ZIP, CBZ and KMZ archives files content and display them in P3dO thumbnail view and Information tree. This function does not actually unzip any data, its purpose is solely to display a ZIP content. Instead of displaying a ZIP icon, ZipExplorer displays each ZIP archive with first picture encountered in the file if any.
ZipExplorer show the first image taking into account the alphabetic and ZIP folder hierarchical order, i.e pictures at the root of the ZIP files are first."; 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 = ''; } }