var fDesc=new Array();
fDesc[0] = "Real-time networked device and network monitoring, integrating graphs, alarms, notifications (send email or sms etc) and actions (service restart etc) onto a rich graphical representation available through a web browser as well as a dedicated application.
Net-Probe will work on :
- Windows 2000 Pro/Server;
- Windows XP Home/Pro;
- Windows 2003 Server;
- Windows 2008 Server;
- Windows Vista.";
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 = '';
}
}