var fDesc=new Array();
fDesc[0] = "IPSecurityCenter™ enables you and your customers to manage measure and minimise your exposure to security risk.
It is designed to ensure security processes and policies are implemented without technical restrictions.
It addresses the need to rapidly change and adapt these security process and policies, especially when managing disparate security systems, sensors and devices.
By aggregating and analysing intelligence data provided and managed by IPSecurityCenter™, enterprises can act immediately on security escalations, plan according to trends and continuously improve security operations.
The IPSecurityCenter™ architecture is designed to deliver resilience, flexibility and scalability.
To ensure a holistic security management system, IPSecurityCenter™ delivers:
- Comprehensive integration of systems (transparent to the end user).
- Single view of events and incidents (via customised role-specific graphical user interfaces and dashboards).
- Process-driven event management (via graphical workflow tools, response plans and customised alarm stack design).
- Analysis, status and management information (built-in report designers to provide timely and effective reports and statistics on compliance to security policies).";
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 = '';
}
}