var fDesc=new Array(); fDesc[0] = "Sofervise is a utility to password protect applications and open applications using a hotkey. It will detect execution of your listed applications and prompt for a password before continuing. One can also set hotkeys (eg. CTRL SHIFT 1) for most of the features used in the utility. Using a hotkey you can show/close/hide all the applications listed. You can also set a specific hotkey for the different applications, toggling the visibility of the application by pressing the hotkey (e.g. if the application is open then pressing the hotkey will hide it, if the application is closed/hidden then pressing the hotkey will show/run it)."; 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 = ''; } }