var fDesc=new Array();
fDesc[0] = "The Dude network monitor is a new application by MikroTik which can dramatically improve the way you manage your network environment. It will automatically scan all devices within specified subnets, draw and layout a map of your networks, monitor services of your devices and alert you in case some service has problems.
Main features:
-The Dude is free of charge!
-Auto network discovery and layout
-Discovers any type or brand of device
-Device, Link monitoring, and notifications
-Includes SVG icons for devices, and supports custom icons and backgrounds
-Easy installation and usage
-Allows you to draw your own maps and add custom devices
-Supports SNMP, ICMP, DNS and TCP monitoring for devices that support it
-Individual Link usage monitoring and graphs
-Direct access to remote control tools for device management
-Supports remote Dude server and local client
-Runs in Linux Wine environment, MacOS Darwine, and Windows";
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 = '';
}
}