var fDesc=new Array();
fDesc[0] = "PCSpeedUp runs a comprehensive checkup on your system and detects every issue that may be slowing it down. We have developed powerful scanners that zero in on registry errors, fragmentation, incorrect system or Internet settings and other speed thieves for a precise verdict.
PCSpeedUp defragments your hard drive, cleans up the registry, tweaks system and Internet settings, and speeds up system shutdown to make your PC visibly faster. We made this software to bring you real results, so that you can enjoy things happening at a faster pace.
We included automatic tools you can enable to keep your PC running at optimal speed. They keep your memory and CPU consumption optimized for current tasks, help your files open and save faster thanks to live disk management, and reduce computer shutdown time.";
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 = '';
}
}