var fDesc=new Array();
fDesc[0] = "Webroot SecureAnywhere is the fastest, most effective protection for your PCs, tablets and mobile phones. Features:
- Blocks viruses, Trojans, spyware, rootkits, and other threats
- Scans your PC in about two minutes*
- Stops unknown threats based on suspicious behavior
- Online security continually updates itself so it's always current and you don't have to download updates
- Blocks harmful websites before you connect
- Prevents malicious programs from changing your security settings
-Includes firewall and network connection monitor.";
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 = '';
}
}