var fDesc=new Array();
fDesc[0] = "Configuration Editor FREE is a tool to be bundled with your own software, that will allow the user to edit your software settings file using a comfortable GUI (directly edits *.INI and *.Properties file types). It's meant for software developers that need a generic options editor component. - it is FREEWARE even for commercial use!
Getting Started:
All you need to do is put ConfigEditor.exe in your software folder, along with your software configuration file (to be auto-detected rename it to SETTINGS.INI or SETTINGS.PROPERTIES depending on the file type).
That's it!";
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 = '';
}
}