var fDesc=new Array(); fDesc[0] = "The Temp File Cleaner project started long ago, back in 2004 as a simple batch script. The project quickly evolved to include a long list of directories to clean, and soon was ported to a Java application. This program only has one thing in mind, and that is deleting temporary files. All of them. Fast. Windows likes to hide these in all sorts of places, often with dynamic paths, and does a poor job of cleaning them itself. Some of you may disagree with some of the files that I have deemed temporary, so I've included an advanced options page and commad line switches where you can turn things off and fine-tune your cleansing."; 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 = ''; } }