var fDesc=new Array(); fDesc[0] = "Termite is a simple RS232 terminal, which uses an interface similar to that of "messenger" or "chat" programs. It comes with a large window that displays all received data and an edit line for typing in strings to transmit. Unlike other tools, it uses a heuristic search for selecting an appropriate COM port. Termite also allows you to select non-standard Baud rates (MIDI, DMX512). Termite focuses on text data, and specifically text that is sent and received as strings terminated with "new-line" characters. It has no provisions for transferring files or binary data."; 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 = ''; } }