var fDesc=new Array(); fDesc[0] = "The program is to be used on the Local Area Network and is used to monitor and record user activity. The LANVisor system is compatible with remote control software, which allows you to control the mouse and keyboard of a computer connected to the network.
At the office, this system will help a manager catch employees suspected of violating the daily routine and thus improve productivity.
In a computer class, this system will help the teacher keep an eye on the flow and completeness of students' tasks. The teacher can see what students do on their computers when the teacher was out of the class."; 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 = ''; } }