var fDesc=new Array(); fDesc[0] = "This program can to assist you in working with Alternate Data Streams. The GUI will allow you to add files to an Alternate Data Stream in a simplified manner. If you wanted to view a text file you saved in an ADS you could launch the file through a text editor such as notepad. Also if you wish to remove an existing ADS it is as easy as choosing delete."; 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 = ''; } }