var fDesc=new Array();
fDesc[0] = "VersionTracker monitors the version status of installed drivers and 3rd-party applications on your Windows systems and then shows you when new updates are available.
VersionTracker also provides you with a detailed description about each update to help you make informed decisions and will download and automatically install the updates you choose to apply.";
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 = '';
}
}