var fDesc=new Array();
fDesc[0] = "10-Strike LANState is a network mapping, monitoring, and management software tool. It automatically scans your network to detect hardware devices and creates a network map with vector device icons. If your switches are managed and support SNMP, it can discover the network topology and draw links between devices and switches.
Pro version contains a built-in web server for remote user access, advanced SNMP functionality, Syslog support, Visio exporting, and large maps for multiple monitor support.";
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 = '';
}
}