var fDesc=new Array(); fDesc[0] = "NetworkModule Client captures an image on the PC screen in real time, and transmits the image to NetworkModule. A screen can be captured in the following two modes real time capture mode whenever the client detects even a light change, the screen is captured and transmitted to NetworkModule; and one-shot capture mode when the client takes a snapshot of the PC screen and then disconnect itself."; 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 = ''; } }