var fDesc=new Array();
fDesc[0] = "Symantec Endpoint Encryption Full Disk Edition provides advanced data and file encryption for desktops, laptops, and removable storage devices.
This software offers scalable, enterprise-wide security that prevents unauthorized access by using strong access control and powerful encryption and also a central management console, enabling safe, central deployment and management of encryption to endpoints.
Main Features:
- Pre-boot password authentication ensures only authorized individuals have access to data
- Easy central deployment, administration, and management features
- Supports multiple users and administrators on individual machines
- Key sharing mechanisms that allow users to share access to files securely.";
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 = '';
}
}