var fDesc=new Array();
fDesc[0] = "F-Secure Booster improves the performance of your PC by optimizing various system settings. This gives you faster start-up times, browsing, file operations, and makes your applications run smoother.
Main features:
- 1-click optimization: run the standard optimizations with a single click.
- Clean: get up to a gigabyte more 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 = '';
}
}