var fDesc=new Array();
fDesc[0] = "PCP Glider is a binary distribution of PCP for the Windows (Win32) operating system. It includes a bundled compiler, Perl runtime (and pre-installed modules that offer the ability to install XS CPAN modules directly from CPAN), a POSIX shell environment and the Performance Co-Pilot toolkit.
The purpose of the Glider package is to provide a practical Win32 environment for performance engineers experienced with either the POSIX platform or the Win32 environment to run the Performance Co-Pilot toolkit on Windows. It provides both the PCP monitor and collector components.";
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 = '';
}
}