var fDesc=new Array();
fDesc[0] = "PerformaSure® delivers deep-level application performance diagnostics spanning the Java technology stack.
With PerformaSure, you can help drive quality improvement in pre-production by adding a level of protection during integration and load testing. In addition, you can diagnose, triage and fix problems faster – and earlier in the development cycle, when the cost to correct is lowest.
- Reconstruct the execution path of end-user request transactions easily with exclusive Tag-and-Follow™ technology
- Adjust the level of data collection easily for exceptional performance under heavy load situations
- Visualize data easily with the exclusive call tree browser user interface
- Navigate through collected performance data easily with fast forward/rewind and zoom capabilities";
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 = '';
}
}