var fDesc=new Array();
fDesc[0] = "Malware Inspector is a powerful anti-malware, antispyware tool that protects your computer against viruses, worms and other dangerous applications that could attach while surfing the Internet.
Main Features:
- Daily updates with latest malware signatures.
- Complete list of active processes and startup programs with the details.
- Monitoring of each process.
- Any suspicious process or startup program can be sent for analysis and placed in quarantine if necessary.
- Fileguard reports, this inovative technology can help to locate undetected threats and
many kind of computer malfunctions and errors.";
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 = '';
}
}