var fDesc=new Array(); fDesc[0] = "Visual Directory Explorer is a tool that will help you clean up your hard drive. It presents a pie chart (or optionally, a bar chart) where each slice is a subdirectory on your computer. Clicking a slice in the pie chart brings up a pie chart of that subdirectory, allowing you to recurse. Visual Directory Explorer performs a quick analysis of your hard drive and calculates how much space each directory and file is occupying this. It presents this in two formats:
- a "tree" display which mirrors the file and directory layout on your hard drive, and
- a graphical "pie chart" (or bar chart) display that presents, in human terms, how much space is being used up"; 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 = ''; } }