var fDesc=new Array();
fDesc[0] = "Kaspersky Internet Security comes packed with multiple layers of protection to identify, isolate, and remove all types of malware including viruses, worms, Trojans, cryptolockers, rootkits, and spyware. Its Automatic Exploit Prevention identifies complex network exploits across your PC.
Trojan Remover detects and removes Trojan horse viruses and Internet worms that slow down your Windows PCs. This is done automatically, so there’s no need for you to manually edit system files.";
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 = '';
}
}