var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to find unused files or folders and send them to the Recycle Bin or a specific folder. The user adds folder/s or a drive and chooses an option to find by: date accessed, date modified or date created. Then the cutoff date is chosen from drop down menus with the following options: after, before, on or between a selected date. There is another option for listing anything that has not been accessed within a user specified number of days. Selected items from the results can be sent to the Recycle Bin or to a folder."; 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 = ''; } }