var fDesc=new Array();
fDesc[0] = "DeLogger is included with the DT50/500/600 series 3, DT80 and DT800 range of dataTaker data loggers, providing you with a powerful, yet easy to-use tool for programming and supervising a dataTaker. Use the graphical interface to set-up your system. DeLogger allows you to monitor sensors and alarms while logging data. The software package has the capability to display real time or logged data in the following views:
• Charts and trend plots with zoom and multi-variable capabilities
• Mimics (analog meters only)
• Tabular and raw text data for simple reporting
• Spreadsheet capabilities similar to Microsoft’s Excel";
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 = '';
}
}