var fDesc=new Array();
fDesc[0] = "DRIVERfighter is an application that scans your computer and detects outdated drivers and provides you the tools to download and install those drivers.
Main Features:
- Improved hardware functionality: The latest manufacturer driver updates often contain improved and new functionality for your hardware components
- Performance: With updated drivers your PC can perform much faster.
- Productivity.
- Safety.";
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 = '';
}
}