var fDesc=new Array();
fDesc[0] = "Features:
- Central server console to manage the power settings for all your Windows and Macintosh workstations
- Manage power settings on workstations by groups of workstations
- Deploy the Windows agent from the console without using Group Policies, SMS, LanDesk, Etc.
- Deployment of the Macintosh packaged software supports Apple Remote Desktop
- Automatic deployment of configuration files even with workstations shutdown
- Automatic upgrades of the agent software from the console and the Internet
- Easy-to-use scheduler (i.e., Administrators’ computers would not enforce power settings between 8-5).
- Options to turn off the monitor, power down into standby, hibernate or shutdown the computer.
- Confirmation prompts before shutdown.
- Inactivity definitions can be based on keyboard, mouse activity, CPU, disk, and network activity.";
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 = '';
}
}