var fDesc=new Array();
fDesc[0] = "Cyberoam Endpoint Data Protection is an easy-to-deploy, downloadable solution which allows organizations to execute centralized control over access, modification and transfer of organizational data through management-defined roles for individual users or groups.
Cyberoam’s data protection measures provide real-time alerts and warnings in response to device, application, file transfer, and activities based on management-defined policies, leading to protection of sensitive data. It takes security beyond the organization’s premises with encryption support for removable storage device or file-level encryption, and takes care of accidental or intentional modification/deletion of files through shadow copying.
Automated asset management allows for efficient management of hardware and software assets within the organization while lowering malware incidence.";
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 = '';
}
}