var fDesc=new Array();
fDesc[0] = "The PacketTrap MSP Studio is an ultra thin client for viewing and configuring your PacketTrap MSP platform.
Main features:
- Real-time monitoring dashboard of critical network information
- Granular device details required to identify trouble spots quickly
- Flexible policies with alerts and actions to be aware and fix problems before users complain
- Historical reports of collected data for troubleshooting and future resource planning";
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 = '';
}
}