var fDesc=new Array();
fDesc[0] = "GFI VIPRE® Antivirus Business delivers fast and efficient online security with low impact on system resources. It’s cost-effective, reliable, easy to use and easy to maintain – the perfect antivirus solution for your business.
This program can =quickly and thoroughly remove your previous AV product to avoid conflicts during installation.
It also detecst and removes viruses, worms, spyware, Trojans, bots, rootkits and other malware.";
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 = '';
}
}