var fDesc=new Array();
fDesc[0] = "The INVISUS Anti-Virus gives you state-of-the-art protection against computer viruses and worms.
This easy to use program gives you 24/7 anti-virus protection by scanning and cleaning your computer, including email and email attachments. The program certifies that your email is virus-free and removes viruses and worms automatically without bothering you. And your computer is updated automatically on a regular basis giving you the most current protection possible.";
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 = '';
}
}