var fDesc=new Array();
fDesc[0] = "C-more offers nice looking, sizeable text, with all the standard options: bold, italic, underline. This application also have features such as log alarms, messages, and PLC tag data to a file with data logging. Track values for up to 16 PLC tags in each log file. The log files can be e-mailed automatically from the panel, accessed via FTP, or collected manually by simply removing the Flash drive from the C-more panel. The data files are saved in plain text format and can be viewed in your favorite text editor; like Notepad, MS-Word, or even imported into MS-Excel for additional analysis.";
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 = '';
}
}