var fDesc=new Array();
fDesc[0] = "YourKit Java Profiler is a tool designed for profiling applications at both development and production stages, which brings many benefits to professional Java developers on all platforms.
Main Features:
- Powerful analysis capabilities: CPU and memory hot spots with devoted views; unique snapshot comparison; memory leak detection; memory distribution reports; measuring of shallow and retained sizes of objects.
- On-demand profiling: With this feature, you can enable profiling only when you need it, with the application running at its full speed for the rest of the time.
- Free embedding into production.
- User-friendliness and usability";
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 = '';
}
}