var fDesc=new Array();
fDesc[0] = "Actual Booster is an application designed for speeding up your computer.
Main Features:
- Automatically loading each time Windows starts.
- The modest memory and disk space usage.
- You can set hot keys for showing the dialog "Options" and for exiting the program.
- You can select the priority level (all possible values from minimal to the maximum).
- The utility is completely standalone. It doesn't depend on the .NET framework, Java runtime, or other 3rd-party packages.";
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 = '';
}
}