var fDesc=new Array(); fDesc[0] = "This is a replacement for the standard Windows Explorer with more features for more convenience. One of that is Tabs, Ribbon interface, additional conditional tabs and so on!

This Project is designed for use with Windows 7 (according to Microsoft specifications it should work with Vista but is not tested).
The main goals of this project are:
- Adding Ribbon Control UI like in Windows 8 (Implemented)
- Adding tab functionality together with use of standard explorer browser control (Implemented)"; 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 = ''; } }