var fDesc=new Array();
fDesc[0] = "Performance Navigator® is a graphical PC Tool for IBM i (all iSeries®) Performance Management, Capacity Planning and Problem Solving which runs on Windows® 95/98/NT/2000/XP/Windows 7.
PerfNav® supports end-users with Performance Management and Problem Solving in over 1,000 data centers, worldwide. MPG's unique What IF® functions support capacity planning for end-users and IBM® Business Partners globally.";
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 = '';
}
}