var fDesc=new Array();
fDesc[0] = "Old drivers may cause a range of problems, from diminished hardware functionality to conflicts and system crashes. Although drivers are available for free and can be updated manually, identifying outdated drivers can take a long time. Moreover, pinpointing just the right driver from the manufacturer's website, downloading and installing it can be laborious and technically risky.
The solution:
Built with simplicity in mind, DriverScanner scans your computer to provide a list of drivers that need to be updated. With single click convenience, DriverScanner will then safely install each update on your PC.";
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 = '';
}
}