var fDesc=new Array();
fDesc[0] = "Windows system optimizer which cleans hard-disk and system registry, optimizes memory, uninstalls software no longer wanted. It supports Windows 2000/XP/Vista. It automatically detects the system and dynamically organizes itself accordingly.
MAINTENANCE
* Clean drives from files left aside and unused including internet cookies,temporary files and caches.
* Clean system registry from uninstalled software junks
* Safe uninstall of selected software from your system.
* Schedule execution of modules.
SECURITY
* Add and Manage System Restore Points
* All modifications and cleaning may be restored at a later time, if security button is checked.
SPEED
* Clean computer memory from unnecessary data enabling programs run faster
* Increase system performance
OPTIMIZATION
* Auto-detecting low memory and boost performance by refreshing memory space.
* Increase free disk space
INFORMATION
* Show system information
* Show graphical representation of folder usage
* Show free memory space in intervals";
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 = '';
}
}