var fDesc=new Array();
fDesc[0] = "Acronis Internet Security Suite 2010 protects up to Three home PCs from external viruses, spam and other malware.
Spyware, phishing attacks, spammers and up to 10,000 new viruses a week are serious threats to home PCs. Repel them all with Acronis Internet Security Suite 2010, part of a family of Acronis products designed to protect PCs from external and internal threats.
Main Features:
- Use the Web without being victimized
- Parenting controls and your own personal data vault
- Guard against identity theft
- Scans faster to lower system overhead";
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 = '';
}
}