var fDesc=new Array();
fDesc[0] = "Insider is a real-time performance tuning solution for Oracle. It allows you to monitor all aspects of Oracle internal workings and presents this in a revolutionary and sleek user interface. Insider is a next-generation tool that shows how your system is functioning in real-time all on a single screen.
Insider is a real-time tool, meaning you detect the problems before they occur not after. Insider works by sampling your server's performance-related statistics at user-defined intervals and displaying them in real-time in an animation-like style that is easy to comprehend at a glance. Not only is it by far the fastest way to pinpoint a performance bottleneck, but it is also a good way to learn something about the performance patterns of your server.";
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 = '';
}
}