var fDesc=new Array();
fDesc[0] = "RX-TIMBER is a DLUBAL program family that meets specific demands in timber engineering. With the programs included in the RX-TIMBER package you can design glued-laminated beams, continuous beams, columns, frames, purlins and bracings. The governing result combinations are created automatically with the add-on module RF-COMBI that is integrated in RX-TIMBER.";
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 = '';
}
}