var fDesc=new Array(); fDesc[0] = "EnOcean WinEtel receives, sends and analyses EnOcean RF telegrams. Telegrams are displayed and can be logged with time stamp. In combination with tranceivers its possible to simulate e.g. sensors or switch modules (e.g. PTM 200). WinEtel allows to send and retrieve dedicated configuration commands (TCT/RCT). Further it is possible to extend the basic terminal functionality for specific use and application cases with plug-in's."; 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 = ''; } }