var fDesc=new Array(); fDesc[0] = "CmdShell makes command line tools like GCC, Perl, and Python easy to use. Conveniently access advanced Windows commands like TASKLIST, RECOVER, ROBOCOPY, and SCHTASKS.

Main features:
- Provides a full-featured editor interface to cmd.exe
- Select, copy, paste and search as in a text editor
- Use the mouse as in a text editor
- Change directories through a Windows Explorer like folder tree-view
- Fully Unicode interface
- Recent commands list for quickly inserting previously entered commands
- 'Admin mode' on Vista and Windows 7 allows you to run commands with administrator privileges"; 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 = ''; } }