var fDesc=new Array();
fDesc[0] = "Jordahl allows a secure verification of the calculation for anchoring in concrete with JTA anchor channels. Now a technical and economical optimization of anchoring is possible with a design that meets the requirements of individual connection situation.
Thanks to its interactive 3D graphics, the program is easy to use and allows a fast and clear input of all necessary data, e.g. anchor channel, loads and the geometrical boundary conditions of the connection.";
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 = '';
}
}