var fDesc=new Array();
fDesc[0] = "This HMI programming software is a user friendly tool designed to allow quick programming of C-more Micro-Graphic Panel. This software includes graphics and an interface program for use with Windows® XP Home, Windows XP Professional, and Windows 2000 (SP4) operating systems.
The simple operation of this software allows users to quickly develop operational control screens for the C-more Micro-Graphic panels.
Main features:
-drag and drop objects
-fill-in-the-blank PLC tagsand
-the Simulator alone will save you hours of programming time.
The C-more Micro programming/configuration software is a spin-off of the powerful, full-size C-more software.";
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 = '';
}
}