var fDesc=new Array(); fDesc[0] = "Hocus Pocus is a little program developed to help the users hide or show their running applications by simple shortcuts and user friendly interface.
The main feature of this program is that it hides applications in public areas, protecting the users privacy.
Hocus Pocus has other good features, such as managing the applications with the kill button, the show button or the maximize button."; 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 = ''; } }