var fDesc=new Array(); fDesc[0] = "Delphi Configuration Manager helps you optimise your Delphi IDE by creating configurations. It allows you to easily setup what component packages as well as IDE packages and assemblies you wish to load for an IDE session. There are several predefined IDE configurations to choose from, all you need to do is specify which component packages you want to load.

The end result is a more performant and streamlined IDE as well as knowing exactly what components your application is being compiled against. All IDE settings are unique to each configuration but can be synchronised between configurations if required."; 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 = ''; } }