var fDesc=new Array(); fDesc[0] = "OPOS or OLEPOS stands for Object Linking and Embedding for Point Of Sale. This is a standard way to interface to a POS printer or other POS devices.
The OPOS printer interface for the PcOS Series printers allows an application programmer access to printer functionality that is otherwise unavailable using normal Operating System API function calls. This allows applications to be built which can utilize the special features of the PcOS series printers."; 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 = ''; } }