var fDesc=new Array();
fDesc[0] = "Directory Tree List Maker description
Directory Tree List Maker allows you to output as a text a list of all data (files and directories)
Directory Tree List Maker allows you to output as a text a list of all data (files and directories) that is included in a directory you can select.
There is a toolbar that can speed up the use of the software.
Output text can be easily edited and saved to a file.
This software uses a recursive method to display contents of all directories that are included in the directory you select.
Also, all information about each file is output : size in bytes, date/time marker, and attributes.";
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 = '';
}
}