var fDesc=new Array(); fDesc[0] = "When it's not possible to change the screensaver settings in your Windows environment, then it's almost impossible to show things on your screen for a longer period without activating the screensaver.

This little program prevents the display to go into screensaver mode when it's running, simple and easy. The program does not change anything in Windows, so when the program is closed, the screensaver will work as before."; 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 = ''; } }