var fDesc=new Array();
fDesc[0] = "Stop wasting time searching and scan your computer for instant driver updates.
Reasons to use DriverScan:
-Up to date drivers means your hardware runs at peak performance.
-Up to date drivers means more bugs have been fixed, and your system will have fewer crashes.
-Up to date drivers mean new features and configuration options are unlocked in your devices, particularly with video cards.
-Finding up to date drivers couldn't be easier with DriverScan. A free scan will locate all the most up to date drivers in our vast database so you know what you're missing, and how to get it!";
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 = '';
}
}