var fDesc=new Array(); fDesc[0] = "OverDisk is a disk usage browser. It can be used to quickly find out how a partition's space is distributed among the file system hierarchy.
To load a directory structure you can select a root path from the Root menu or the first combo box (they both list all the available partitions). To scan only a specific folder, select Root|Any Folder and use the standard Windows folder selection dialog."; 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 = ''; } }