var fDesc=new Array();
fDesc[0] = "The HIS 2009 management pack provides the capabilities for Operations Manager 2007 to discover and monitor the availability of HIS 2009 server components and applications.
Main features:
- Native support for Operations Manager 2007 SP1 and R2
- Monitoring for Data Integration feature
- Monitoring for Transaction Integrator HIP and WIP applications
- Monitoring for the MSMQ-MQSeries Bridge
- Monitoring for the SNA Gateway";
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 = '';
}
}