var fDesc=new Array();
fDesc[0] = "10-Strike Network Diagram is a powerful network topology discovery software for Windows for the quick creation of a visual diagram and exporting it to Microsoft Visio, vector or raster images. The program scans your local area network, automatically builds a graphical network graph (map), displays computers and devices of different types as special icons, discovers network topology, and draws links between the devices (if your switches support the SNMP protocol).";
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 = '';
}
}