var fDesc=new Array();
fDesc[0] = "Chili Antivirus is the indispensable anti-virus software that protects against virus attacks. It is based on an award-winning technology as rewarded by AV-TEST with the accolades of having both the "Best Protection" for three consecutive years, and also "Best Performance"regarding its system speed. Incredibly easy to use, and secures your Mac with a single click of the button. The advanced technology also protects your private data online along with your digital identity, so you can safely use online banking and more. Chili Anti-virus armors your PC and offers an uncompromising performance.
- Voted as " Best Protection " 3 years in a row and Best Security 2014, PC Mag - Voted " Best Performance " by AV-TEST. System speed is not affected - Easy to use. Easy to understand. Protects with a single click of the button - Protects your private data and your personal identity on the web. - Use your online banking in a safe and secure manner.";
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 = '';
}
}