var fDesc=new Array();
fDesc[0] = "It is an application that protects laptops, desktops and servers against the latest malware, viruses and spyware.
Main Features:
- Supports multilevel architecture: Cost effective and new level of administrative ease-of-use.
- Intuitive user interface: Drag-and-drop actions for logical group handling and security policy management.
- Scalable solution: May be implemented at the smallest remote locations";
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 = '';
}
}