var fDesc=new Array();
fDesc[0] = "ELCAD 7 is the ultimate professional CAE (Computer-aided engineering) system. It covers every aspect of the work process, helping you deliver electrical solutions more quickly and efficiently - from project planning for machine construction to engineering process control plants.
ELCAD 7 automates virtually all routine functions to
minimise project planning times, increase efficiency and deliver decisive cost savings.
Features:
The ELCAD Demo Mode runs without time limitation. You can test it whenever you like
Full range of function in the fields of construction and list editing
Integrated functions of ELCAD Studio, the object-oriented solution for modular electric design
Unlimited number of projects, but a limited number of sheets per project
Maximum of 8 circuit diagram sheets or 100 items per project
Complete IEC symbol library
List export via ODBC (EXCEL, ACCESS...) for integration into your OFFICE world
Integrated master data, macros and template drawings
Integration of PLC assignment lists";
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 = '';
}
}