var fDesc=new Array(); fDesc[0] = "Add new commands to the Explorer context menu. Just right-click on any file or folder to access the new commands. Copy path to clipboard, new subfolder, show several file properties. 'DOS Prompt here' automatically does a 'dir' and starts a DOS program without closing afterwards. Integrated 3x shredder, fast file compression, search and replace text in folders and subfolders, and set the date and time created, modified, or last accessed."; 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 = ''; } }