var fDesc=new Array();
fDesc[0] = "Coyote Tracing for .NET is a powerful framework that provides easy to use monitoring and logging capabilities for distributed and non-distributed .NET applications.
Main features:
- Easy to use tracing components that automatically gather context information while sending Trace Messages - such as type name and method signature of the trace-emitting .Net type.
- No impact on application design by using static methods only.
- Ensures performance and does not block the application by using a multithreaded trace subsystem.
- Configurable Trace Message publishing and filtering.";
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 = '';
}
}