var fDesc=new Array(); fDesc[0] = "Remove Hotfix Backups -Removes Hotfix Backup files and the Add/Remove Programs Registry entries. When you install updates from Windows Update, backup folders are created for the files that were replaced during the update. These are created so that you can easily uninstall a particular Hotfix, if it causes problems with your system. If your system is running stable and you don't need to uninstall the hotfixes, then you can safely remove the backup files to free up disk space."; 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 = ''; } }