var fDesc=new Array(); fDesc[0] = "Viewer Program is a small, simple and a fast way of navigating through directories, searching and displaying files. Directory Tree Window is for navigating through the directories. File names are not displayed here. A click on a directory in this window will create a File Tree Window containing all the files in the directory clicked. File Tree Window is usually a simple list of files. However, a Zipped file acts as a node that can be clicked and expanded with constituent files listed as sub nodes. View Window displays the contents of a file. It also displays the FileBasket."; 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 = ''; } }