var fDesc=new Array(); fDesc[0] = "Registry Toolkit performs search &/or replacement operations.
You can search/replace in registry data, values, keys (or any combination) and specify the types of data to process. A browse function lets you can scroll through the registry to select a starting point for your search/replace. You can create and edit keys, values and data, delete keys and values (after confirmation), and undo the last changes made. Output functions let you preview the changes that would be made by a replace in advance of actually making the replace. Replace preview can also be set up to let you interactively select specific replaces to be made in advance of the operation."; 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 = ''; } }