var fDesc=new Array(); fDesc[0] = "This is a small, easy to use application specially designed to help you delete DOT Files with just a few clicks. The problem is that when a folder is accessed on a Macintosh it creates a bunch of little "DOT Files" that all start with "._", it also scatters ".DS_Store" files all over the place. This application is useful when you are using a Macintosh part of the time and on a Windows computer part of the time. If you often transfer files between the two using a USB key."; 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 = ''; } }