var fDesc=new Array();
fDesc[0] = "RED CAD EI
The easiest way of drawing professional electrical installation plans.
As an electrician or planner you receive the plans from architects or owners as a pdf file. The pdfs are imported to RED CAD and converted to the RED CAD format.
After the import of a pdf the scale of the plan is not known. Therefore you need to define a measurement as a reference measurement. This is the only setting that needs to be made.
The easy handling of the software allows you to master the programme without any training in a very short time.";
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 = '';
}
}