var fDesc=new Array();
fDesc[0] = "New approaches and solutions are required to ensure enhanced security and compliance with the lowest total cost of ownership possible. The once-separate IT functions of operations and security must collaborate and share information seamlessly to gain the visibility needed to proactively address IT risk in a more effective and efficient manner. Lumension® Endpoint Management and Security Suite is an extensible solution suite developed on the Lumension® Endpoint Management Platform that reduces complexity, optimizes TCO, improves visibility and delivers control back to IT.
Lumension Endpoint Management and Security Suite provides:
Reduced complexity and TCO via an agile infrastructure, which delivers modularly licensed, best-of-breed product capabilities through an integrated console and single-agent architecture.
Greater control and visibility with an end-to-end approach that includes capabilities to meet endpoint operations, security, compliance and IT risk management needs.
Enhanced security through a unique "trust-centric" approach that enables rules-based exceptions to security and change management.
Endpoint power management which reduces power consumption costs and enables the management and security of both online and offline endpoints.";
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 = '';
}
}