var fDesc=new Array(); fDesc[0] = "The signotec WebSocket Pad Server is a solution for communicating with signotec LCD signature pads from a web-application without having to use a browser plug-in. The server must be run on the PC to which the signature device is connected. A web-application that runs in a browser can communicate with the server via the WebSocket protocol and activate the connected signature device."; 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 = ''; } }