var fDesc=new Array();
fDesc[0] = "getFolder is a handy utility that allows you to automatically perform a different function thus saving much time.
With getFolder you can export files in a folder as a list and save it in various formats (TXT, HTML, XML, CSV, RTF).
Main Features:
- image resizing
- Convert images to other formats
- Find text in multiple files
- Extracting files from subfolders in the parent folder
- Catalog files into folders alphabetically
- Create folders from list of files
- Removing temporary files
- Filtering to 0 length files
- Removing files by extension
- Rename files";
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 = '';
}
}