var fDesc=new Array(); fDesc[0] = "RS-232 monitor allows to communicate with devices connected to serial port by rs232 protocol. RS-232 Monitor allow to reseive data from serial port and view it in ASCII text, binary, decimal, hexadecimal, float(IEEE754) format. RS232 Monitor will shift up all rows when the last row is full. RS232 Monitor can also show data as Terminal."; 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 = ''; } }