var fDesc=new Array(); fDesc[0] = "You want your data when you want it and where you want it. One of the key things that makes the OPC Data Logger
special is its use of Triggers to start and stop logging. Unlike a Historian where you are logging lots of data all the time, the OPC Data Logger can start and stop logging
based on times and conditions. This makes it a great tool for other data collection needs.
OPC Data Logger will perform sampling, end of shift or end of batch runs, start logging when an alarm goes high then stop logging when it is back in normal condition."; 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 = ''; } }