var fDesc=new Array();
fDesc[0] = "QL Shutdown is the power management software. It allows companies to manage power state for each PC across a network and enables scheduling for daily, immediate or one-off actions: wakeup (Wake-On-Lan), shutdown, restart, hibernate, standby, logoff, lock.
- Centralized control feature allows network administrators to perform most common tasks, for example install software patches and updates on networked computers when they are in power-off state, and then shutdown that computers.
- Save energy with QL Shutdown by setting a time after office hours that all your network PCs will be automatically shutdown.
System Requirements:
- Windows 2000/XP/Vista, Windows Server 2000-2008; Support APM 1.2, or ACPI; Wake Up is possible on computers with Wake-on-LAN supports.";
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 = '';
}
}