var fDesc=new Array(); fDesc[0] = "Caffeine is a utility that prevents your PC from sleeping, locking or activating the screensaver. It works by simulating a keypress once every 59 seconds, so your machine thinks you're still working at the keyboard and won't lock the screen or activate the screensaver. The program runs in the system tray. Double-clicking on the icon empties the coffee pot (that's what the icon is) and temporarily disables the program. Double-clicking on it again refills the pot, and will keep your machine awake."; 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 = ''; } }