var fDesc=new Array();
fDesc[0] = "TotalPCHealth is one of the fastest and easiest ways to optimize your PC and eliminate errors. Don't struggle with your sluggish PC any longer.
Features:
- Boost speed and performance
- Get faster startup and shutdown times
- Monitor Windows processes
- Free up valuable disk space
- Remove duplicate files
- Get rid of Malware
- Defrag your hard drive
- Clean the Registry
- Protect your privacy
- Update drivers";
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 = '';
}
}