var fDesc=new Array();
fDesc[0] = "Orange Defender Antivirus provides 24/7 protection against malware and other computer viruses. The application features an easy-to-use interface backed up by a highly effective antivirus program. Apart from the antivirus solution Orange Defender offers real-time advice and safety ratings info about all processes running on your Windows PC. The free version allows 30 trial days; this trial can be extended to up to 60 days.
In addition to the main antivirus function Orange Defender also calculates a safety rating for each application running on your PC. You can view detailed information like calls to potentially dangerous functions, data encryption, Internet connections and more.";
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 = '';
}
}