var fDesc=new Array();
fDesc[0] = "Digeus Registry Cleaner resolves the problems with the Windows Registry that are a common cause of Windows crashes and error messages.
Registry problems can occur for many reasons, including references left behind after uninstalling; incorrect removal of software; missing or corrupt hardware drivers; or orphaned start-up programs.
This will significantly increase the Registry size and slow down your computer, because Windows will need more time to load, search, and read data from the Registry.";
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 = '';
}
}