var fDesc=new Array();
fDesc[0] = "Quick PC Care scans the Windows registry and provides the most suitable optimization to tune and manage various registry behaviors.
Manage Startup is an easy-to-use utility to manage programs starting up with the launch of Windows. Having too many programs lined up at start up tends to slow down your PC's processing as well as startup/shutdown.
The application also allows you to make backup copies of your important data so that it can be recovered easily in case of any data loss event.
File Shredder makes use of advanced multiple disk overwrite technique to permanently remove files from your hard disk. Files deleted by File Shredder can be recovered by no existing technology.
Program Uninstaller provides a comprehensive uninstall wizard to help you remove applications completely. In addition, it wipes out all types of junk files that are generally left behind after uninstall.";
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 = '';
}
}