var fDesc=new Array();
fDesc[0] = "Lotus Notes® Diagnostic is an unsupported utility that you can download and use to automatically perform repetitive tasks associated with analyzing files from a Lotus® Domino® server, Lotus Notes® client crash, hang, or performance issues.
Although the tool accepts files from any platform, it can only be installed on a Microsoft® Windows® operating system.";
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 = '';
}
}