var fDesc=new Array();
fDesc[0] = "VIPRE Advanced Security safeguards your private information and personal data with top-rated, award-winning antivirus protection against today’s most prevalent threats, including those that evade traditional antivirus.
VIPRE consistently earns an Advanced+ rating from the world’s most widely-trusted independent antivirus testing authority. It lets you defend against ransomware and other emerging threats, viruses, Trojans, rootkits, exploits, spyware and more, for peace of mind that is truly priceless.";
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 = '';
}
}