var fDesc=new Array();
fDesc[0] = "Novashield Anti-Malware provides immediate and powerful protection for your PC from known and unknown threats such as Botnets, Trojans, Keyloggers, Rootkits, Worms and Spyware.
Features:
- Intelligent Monitoring & Signature-less detection
- Advanced Protection from new age malware (viruses, spyware, worms, trojans, keyloggers, etc.)
- 24/7 Protection, does not require frequent updates
- Smart Clean-up algorithm removes only bad software
- Does Not Slow Down your computer";
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 = '';
}
}