var fDesc=new Array(); fDesc[0] = "'Find Path Changes' is a handy program if you need to know what has changed in a directory or even in a whole hard drive. This allows you to find "lost" files in a extended directory tree (you have changed it shortly, but you don't know any longer where it is..) . It also gives you the possibility to observe directories you are responsible for (for example at your working place). The program shows you changed/new/deleted files and you can react accordingly. The program can be called by command line or even by a scheduler. It supports low priority and hidden run. It also allows sending e-mail notifications about found changes."; 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 = ''; } }