var fDesc=new Array(); fDesc[0] = "FileExplorer For Delphi 2005 is an add-in which provides Explorer-like functionality in a dockable window inside the IDE.

Main Features:
- Fully dockable, just like the standard IDE Windows, including support for the IDE’s Desktop’s feature, auto-hide, etc.
- Smart Resize, which changes the window layout depending on its location.
- Drag and Drop from FileExplorer to many parts of the IDE (Project Manager, Code Editor, etc)
- Jump to the current Project directory, the active File’s directory, or any directory in your VCL or .NET Library Path.
- Open a Command Prompt or Windows Explorer in the selected directory."; 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 = ''; } }