var fDesc=new Array();
fDesc[0] = "Utility for scaning and cleaning your Windows 9x/NT/Me/2000/XP system registry.
Features:
* High speed of work.
* Scaning of the root keys chosen by you.
* Unique search errors in parameters, values, keys.
* The instruction of necessary disks for check.
* Count of checked keys, parameters, bad keys.
* Conclusion of all keys with errors with possibility of viewing each of them.
* Indication of error in key.
* Removing errors as on the single and all at once.
* Manual correction of error.
* Creating backup files.
* Possibility of use the list of exceptions.
* Addition in the list of exceptions found errors.";
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 = '';
}
}