var fDesc=new Array(); fDesc[0] = "RemoteObserver is a client-server application that is intended for the supervision over computers in a local network or via the Internet. You can watch that your workers, kids or students are doing, and record screenshots for the further viewing. Additionally, you can send messages, run applications, restart or shutdown remote computers if neccessary. Client or server side is protected by password that allows you to keep confidentiality. Server-side application has one interesting feature that allows you work and also watch at the same time."; 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 = ''; } }