var fDesc=new Array();
fDesc[0] = "Simple Directory Analyzer is an easy to use analyzer of your directories.
Just drag and drop a folder from Windows Explorer to Simple Directory Analyzer and you will get file listing for the selected folder, list of all file types in the directory, list of duplicate files, list of hidden files. You will also be able to sort your files by name, file type, location and size. It also enables you to draw graphs from your information (graph of file types and graph of biggest files currently).
Simple Directory Analyzer is a free small Windows utility which helps you to find out what you have in a particular folder. Just select the folder and it will try to analyze folder's content. You can find duplicate files, find out what are the largest files and what are the most common file types (extensions) in that directory,and much more! This way it enables you manage your files and folders and to free disk space.";
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 = '';
}
}