var fDesc=new Array();
fDesc[0] = "Orion IP Address Manager provides detailed visibility into IP address space usage, making it easy to minimize conflicts & ensure your network is always humming.
IP Address Management Software Highlights:
* Now available as a stand-alone application, making IP address management more affordable than ever
* Manage your entire IP infrastructure from an intuitive web console
* Prevent your subnets and DHCP scopes from filling up with preventative alert notifications
* Periodically scan your Cisco IOS DHCP and Microsoft® DHCP servers for IP address changes
* Create IPv6 subnets and plan your IPv6 migrations
* Create, schedule, and share reports showing IP address space percent utilization
* Coordinate team access with role-based access control and track who made each change
* Determine what device had a specific IP address at a given point in time with historical address tracking
* Scan and track unused IP addresses for free and only pay for managing the IP addresses that you are using
* Easily identify non-responsive IP addresses to optimize your IP allocations
* Get a comprehensive view of overall network performance and health when integrated with Orion Network Performance Monitor";
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 = '';
}
}