var fDesc=new Array();
fDesc[0] = "ManageEngine Free Process-Traffic Monitor is a light weight tool helps system administrator, IT technicians to find which process/applications utilizes more resources in a system . Tool monitors TCP/ IP network traffic usage pattern for a Windows Server and also shows details of which process occupies which port in a server.
The "ManageEngine Process -Traffic Monitor" tool can monitor traffic details of a Windows server. The best part is that the tool is made available to you, absolutely FREE of cost.";
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 = '';
}
}