var fDesc=new Array(); fDesc[0] = "Hibernate Trigger is a small program that will detect whenever the system is put into suspend or hibernation mode.

When the system starts going into suspend, Hibernate Trigger will halt the Suspend operation and execute a command of your choice.

Also, when the system resumes, hibernate will execute a command of your choice."; 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 = ''; } }