var fDesc=new Array();
fDesc[0] = "TNS Antivirus is an application that protects your PC against malicious threats.
Features:
- Low use of memory.
- Ensures detection of old and new generation virus file and other suspicious files.
- Detects and kills viruses automatically in removable drives when insert into your system.
- System firewall.
- Enhances automatic scanning when a folder is accessed.
- High speed scanner.
- Controls your startup entries which includes programs that automatically invokes when windows is logged on.";
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 = '';
}
}