var fDesc=new Array();
fDesc[0] = "Works lightning-fast due to the lowest memory and processing usage
Simple and user friendly interface – all needed features right at your fingertips
Built-in tools for contacting emergency on-line antimalware service
Instant understanding of current level of protection
Unique heuristic analysis algorithms
Real-time check of files and mail messages
Powerful extra utilities
More than 2 millions of unique malware footprints";
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 = '';
}
}