var fDesc=new Array();
fDesc[0] = "The csJoint application is an efficient tool for structural connection design.
A joint can be defined alone or based on the global model by the automatic joint identification tool. A prepared joint can be placed several parts of the global model to make the joint integral part of it. A placed joint is always automatically rechecked based on the current analysis results, and the connection stiffness is also updated modifying the global model consequently.
Main features:
-Easy to use graphical user interface
-Huge range of connection types
-Automatic calculation - no need to press recalculate after any change
-Bolt layout suggestion
-Automatic weld size optimization
-User configuration file for connection customization and quick definition
-Powerful documentation
-Export to Tekla Structures";
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 = '';
}
}