var fDesc=new Array();
fDesc[0] = "Rapid Environment Editor (RapidEE) is a freeware Windows environment variables editor. It includes easy to use GUI and replaces small and inconvenient Windows edit box.
Features:
* Show environment variables and values as an editable tree
* Ability to choose variable value using File Explorer tree
* Automatically checking for invalid paths and filenames in variables
* Backup environment variables to the registry file
* Drag'n'drop support to reorder variable values
* "Portable mode" to run from removable media";
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 = '';
}
}