var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to password protect a PC while away. The user chooses the delay time (the time of inactivity of mouse and keyboard) and enters a chosen password. One click on the button and protection is started. The PC will then be locked any time there is inactivity for the preset amount of time. The user can then reactivate the PC by entering the password. There is a check box for loading the software on Windows startup."; 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 = ''; } }