var fDesc=new Array(); fDesc[0] = "AllOff monitors the mouse, keyboard and CPU load and initiates computer shutdown if there has been no keyboard or mouse activity and the average CPU load has been below the threshold set for the specified time. It also supports fixed activation and shutdown times. AllOff supports all the normal shut down modes. It can also be used to control a remote computer. Uses of AllOff include unattended backup (shutting down the computer when the backup has completed) and shutting down a computer if the user forgets. It can be started at a fixed time, on start up or manually."; 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 = ''; } }