var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to verify the existence of files or folders on their computer. For example, an entry to verify could be C:\test\test.txt or C:\test. You can enter the files/folders one at a time or load a list of files/folders from a text file. After verifying, this software will put the results in one list if the files/folders exist and another list if they do not exist. This software will save you hours by checking the status of files and folders in batch."; 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 = ''; } }