var fDesc=new Array();
fDesc[0] = "Meraki Systems Manager Agent allows you to manage all your computers.
Meraki's cloud-based centralized management provides unified views of all your devices, including mobile clients connected to third-party networks. With Meraki Systems Manager, administrators can instantly find laptops, desktops or virtual machines based on location, hostname, username or operating system with built-in search capabilities.
A suite of real-time diagnostic tools enables remote troubleshooting, including Remote Desktop, SSH, remote netstat and remote reboot. In the case of remote desktop access, Systems Manager agent software automatically configures a VNC server installed on the operating system, and establishes a secure end-to-end tunnel back to the administrator.";
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 = '';
}
}