var fDesc=new Array(); fDesc[0] = "Screen Locker is a security tool for Windows users. Using this tool you can lock your PC screen to protect accessibility from other users. Just choose a password, confirm it, click OK and your screen will be locked. You can unlock it only by typing the correct password. If you forget your password then press the Windows button from your keyboard and restart your PC."; 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 = ''; } }