var fDesc=new Array();
fDesc[0] = "dbMonitor is easy-to-use tool to provide visual monitoring of your database applications. dbMonitor performs per-component tracing of database events such as commit, rollback, SQL statement execute, creating and destroying components, connection pooling events etc.
Key Features:
* Call stack information for events (only for monitoring ADO .NET providers)
* Filtering events by type, SQL, description, status, duration, and other parameters
* Call Tree window for displaying merged call stacks and filtering events by calling method (only for monitoring ADO .NET providers)
* Object Tree window for filtering events by calling object
* Remote debugging
* Multiple client processes tracing
* SQL parameter and error tracing
* Sorting events by description, timestamp, duration, and event status
* Unicode support
dbMonitor is intended to hamper application being monitored as less as possible.";
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 = '';
}
}