var fDesc=new Array();
fDesc[0] = "Speed Startup is an application that helps you optimize oyour computer Startup. It is an is an easy-to-use software, which allows you to get rid of all those useless or unwanted applications that you don't wish to continue to run on Startup. From the user’s interface, you can access Start, Diagnosis, Contents, Rebuild, Settings, and Help options.
After pressing the Scan button, the program will start detecting and evaluating the Startup items. A full report will be automatically presented at the Diagnosis windows.";
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 = '';
}
}