var fDesc=new Array(); fDesc[0] = "The OMRON FINS Color Coded Messaging Tool was developed to assist users in understanding, testing, and debugging FINS messages. The Tool sends messages to devices such as PLCs via the FINS UDP protocol, and receives the responses for the user to interpret.

Each Command or Response byte in the Tool can be color coded to identify unique sections of the FINS command. Each command, and optionally the response, can be saved for later use, and the color coding is saved with in the file.

Once a command is successfully working in the Tool, the user can choose to build the corresponding CMND instruction to copy / paste into a PLC, if a PLC is the device that will send the FINS command in the users application."; 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 = ''; } }