var fDesc=new Array();
fDesc[0] = "E³.series provides a comprehensive, Windows® based, solution for the design and documentation of today’s complex electrical and electronic systems.
It is a state-of-the-art proven application, based on common component databases and symbol libraries to ensure a unique representation of circuit diagrams, producing accurate, error-free documentation with simultaneous manufacturing and support documentation.
With E³.series you can increase your design productivity using the most advanced ECAD engine that links schematic design, panel layout, terminal diagrams, cable block diagrams and wiring design tasks in a single design environment.
Because E³.series offers integrated design tasks along with the consistent Windows® graphical user interface, you can maximize engineering design skills and minimize training costs.";
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 = '';
}
}