var fDesc=new Array();
fDesc[0] = "With more of your business operations going digital, you need to protect every server, laptop & mobile device. In a single solution – with one easy-to-use management console – we deliver Next-Gen Security that helps you protect every endpoint your business runs.
Protects against the latest threats, including ransomware
Hardens endpoints – to reduce your exposure to cyberattacks
Helps boost productivity – via cloud-enabled usage controls
Protects servers & endpoints without damaging performance
Secures diverse environments – PC, Mac, Linux, iOS & Android
Simplifies security management – with one unified console";
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 = '';
}
}