var fDesc=new Array();
fDesc[0] = "The ProfiLab-Expert software allows you to develop your own digital or analogue measuring technology projects. It doesn’t matter if you want to create analogue measurements or digital controls - you can realize it all. And for all this you don’t have to write a single program-line. You create your projects just like drawing a wiring diagram. Simply add buttons, displays, etc. to your diagram and build your project step by step.
ProfiLab-Expert is the powerful combination of DMM-ProfiLab and Digital-ProfiLab.
The ProfiLab-Expert software offers all features of both single products and many more functions like the integrated compiler and the extensive hardware support.";
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 = '';
}
}