var fDesc=new Array();
fDesc[0] = "SDE Remote MON allows an SDE Administrator to remotely monitor and manage ArcSDE services.SDE Remote MON uses the command line utility "SDEMON.EXE" to manage the remote SDE Server.
However, a DOS window is not required to view the command output. It is all done through windows.
SDE Remote MON creates a batch file on the fly with the appropriate SDEMON command line syntax.
The batch file is then executed and its output is displayed in the windows GUI.";
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 = '';
}
}