var fDesc=new Array(); fDesc[0] = "Datasnip is a simple Communication port to Keyboard buffer redirection program. Characters arriving at a
Serial Communication port of a PC will be transferred to the keyboard buffer allowing data to be imported
to any user application program that allows a keyboard input. This function, generally known as a keyboard
wedge, is useful in such applications as RFID scanning, importing scale data, and any other application
that requires automated data entry."; 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 = ''; } }