var fDesc=new Array();
fDesc[0] = "BitDefender Antivirus offers and gives advanced protection against viruses, malware, phishing attacks and theft, without slowing down your PC. Performs home network security management from a single location and BitDefender software can be remotely configured from other computers in the network , and tasks such as scans, backups tune-ups and updates can be run on demand or scheduled to be performed during off-hours.
Additionally it scans all web, e-mail and instant messaging traffic for viruses and spyware, in real-time and quietly. Blocks attempted identity theft (phishing), prevents personal information from leaking via e-mail, web or instant messaging (Messaging Encryption).
New features on this version:
Lost program files issues have been resolved; in the event of files damaged due to PC problems, BitDefender automatically repairs and updates itself.
System load is reduced and avoids requesting user interaction during games; thanks to its design to take few system resources.
Laptop mode included to prolong battery life.";
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 = '';
}
}