var fDesc=new Array();
fDesc[0] = "Discover active IPv4 and IPv6 devices and open TCP application ports on your Ethernet network with the IP Inspector™ Software utility. Quickly identify network changes over time. Export the results to document your network. With the IP Inspector software utility you can:
- Identify active devices within a user-defined IPv4 address range
- Discover host name, host MAC and IPv6 address for a responding device
- Identify open TCP application ports
- Detect IP state changes over time
- Export the results for further analysis and documentation
- Save test profiles for future testing";
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 = '';
}
}