var fDesc=new Array();
fDesc[0] = "Opsview provides distributed network and application monitoring in today's physical, virtual and hybrid cloud infrastructures. Opsview is an integrated monitoring tool that incorporates the popular Open Source software including Nagios® Core, Nagvis, Net-SNMP and RRDtool. It comes with a fully distributed, multi-tenant architecture out-of-the-box.
Opsview is the most cost-effective way to monitor emerging computing environments, particularly Cloud Computing. Its distributed, highly available architecture makes it is ideal for monitoring applications in a private cloud, giving them the same visibility as internally hosted services";
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 = '';
}
}