var fDesc=new Array(); fDesc[0] = "9Locker is a security app that enables you to lock and unlock your computer using a simple pattern tracing action. It gives your computer a pattern lock screen where you drag your mouse along a 3X3 grid until you make your preset pattern. You can set an emergency password to get into your computer the more traditional way if you like, too. The program comes with five custom backgrounds you can use on your lock screen, but you can set the background to be any image you want."; 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 = ''; } }