var fDesc=new Array();
fDesc[0] = "In DOS it was very easy to print the content of a directory. But unfortunately there is no such function in Windows.
In Windows you can use DirPrinter to print the content of a directory and the directory structure in a comfortable way.
Features (excerpts):
- Print the content of a directory
- With or without subdirectories
- User defined filters
- Print preview
- Export into TXT- and CSV-File
- Export into clipboard
- Powerful Export Assistant for export to DBase, Paradox, Word, Excel, Access, RTF, TXT and many other popular file formats
- Print directory structures
- ...";
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 = '';
}
}