var fDesc=new Array(); fDesc[0] = "UAC Snooze is a Windows Vista program that allows you to temporarily stop User Account Control (UAC) prompts from asking permission to do something by simply clicking on an icon in the system tray. This is done by leaving UAC on, but turning off the prompts (and automatically granting elevated privileges) for a user-defined amount of time, and then automatically turning the UAC prompts back on. This allows you to take advantage of the UAC security features most of the time, while temporarily turning off the prompts when you know they are not needed."; 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 = ''; } }