var fDesc=new Array();
fDesc[0] = "Millenium 3 is a software for Millenium 3 logic controller.
The Millenium 3 is the latest generation of micro-PLCs.
Features:
- Bug fixes:
- Function REGULATOR: parameterization problem when using two blocks REGULATOR.
- Function Flow : correction of the execution time.
- Function Level: fixed number of slots (dll).
- TRANSFER FUNCTION 50
- TIMER TRANSFER FUNCTION 50
- DEFROST FUNCTION
- Evolution software:
- Compatible with Windows 7 (32 and 64 bit).
- Possibility to save the macros in the toolbar.
- Possibility to create its own library of functions in the toolbar.
- Reorganization of the blocks according to their uses.
- 44 or 76 slots available depending on the type of controller ( 12 slots).";
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 = '';
}
}