var fDesc=new Array();
fDesc[0] = "20 tools to assist you with network planning, discovery, monitoring and diagnostics. Supports Windows Vista and Windows 7.
N.E.T. Std tools integrate IPv4, IPv6 and SNMP technologies with an easy to use and attractive user interface. Maintain your feel for the real-time pulse of your network.";
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 = '';
}
}