var fDesc=new Array();
fDesc[0] = "This is a simple program used to do a quick Search or a Search and Replace of Strings in your Registry.
FEATURES:
* Quick Search of Registry Keys
* Quick Search and Replace of Registry Keys
* Custom Selection of Registry Key Types for searches
* Creation of Registry Undo files
* Easy to use interface
* Easy Editing of found Registry Keys
* Exporting Search Results to CSV or INF files
* Open Microsoft's RegEdit at found Registry Key locations
* Connect to a remote machines Registry to perform Registry Replace functions
* Enable Search and "Delete" for Registry Replace operation (if you want to be daring)
* Auto Start and Auto Close (with Hiding of Window) for Automated Search and Replace operations (ie. Login scripts etc)
* Backup/Restore of Registry Hives
* Loading/Unloading of Backed up Hives to search/review.
This program is released as SHAREWARE and can be used freely for a period of 30 days. After that period you must either pay a fee of $15(US) or delete the software from your machine.
OS: Windows 95/98/NT/2000/XP.";
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 = '';
}
}