var fDesc=new Array();
fDesc[0] = "Need to easily be able to catalogue your software or music cds?
FileLister Pro allows you to display the content of your drives or folders in a simple text format that you can copy and paste into your favorite database program or excel spreadsheet.
It allows you to see the individual files contained within any folder in one window, and the other window displays either any sub folders contained within a folder (to make it easy to copy and paste the names of application folders), or all the individual files contained in the selected folder, including those in all it's sub-folders.
Incredibly easy to use!!!";
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 = '';
}
}