var fDesc=new Array();
fDesc[0] = "IPMPlus Workgroup Console is a software for monitoring networks developed for small enterprises and businesses.
Feature:
- Auto discovery of nodes - to discover IT assets in your network
- Predefined power schemes to all the nodes of the group
- Flexible specification of IP addresses to define the workgroup
- Node configuration information such as CPU info, Power Capabilities, OS info and Network Info
- Remote administration of power schemes in any node (Desktop/Server)
- Supports group operation, detailed power savings and consumption reports
- Central monitoring console for managing the desktops/servers
-Unique Application Sensors helps you to save more without affecting the productivity";
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 = '';
}
}