var fDesc=new Array();
fDesc[0] = "The WhatsUp Event Log Management Suite is a modular set of applications that can automatically collect, store, analyze and report on both Windows Event and Syslog files for near real-time security event detection and response as well as historical compliance assurance and forensics.
With the WhatsUp Event Log Management Suite you can:
- Collect Windows Event log (from Windows systems and hosted applications) and Syslog information (from routers, switches, firewalls, IDS, IPS and Unix and Linux servers) for comprehensive analysis and audit
- Access custom reports for IT personnel, compliance officers and even law enforcement agencies
- Monitor network security threats in real-time and facilitate appropriate incident response
- Provide on-the-fly access to event log data for routine viewing or operational triage";
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 = '';
}
}