var fDesc=new Array(); fDesc[0] = "PySort is an application for people that do not have the time, nor patience, to sort through a messy folder. It will scan through the selected folder and place all known files in appropriate folders and those that are unknown to the program will simply be placed in an "Unknown" folder.

Main Features:

-Sorts files into folders with appropriate names for each type.
-Selectable working directory.
-Detects if source file is present in destination folder and if so ignores the source.
-Ignores folders."; 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 = ''; } }