var fDesc=new Array();
fDesc[0] = "Kaspersky Software Updater automatically scans your PC – at the time & date you select – and then tells you which applications need to be updated.
Gives you a choice of scanning modes
Quick Scan checks software that’s critical to your PC’s security.
Full Scan checks an extended list of applications.
Keeps you in control
After a scan, just look through the list* of out-of-date programs and choose which ones you want to update.
With just a few clicks, your PC software can be up-to-date… to help keep your PC running smoothly and securely.";
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 = '';
}
}