var fDesc=new Array();
fDesc[0] = "The free to use educational version contains the following modules:
- The Kernel (K) module,
- The Stress (S) module,
- The Graphical (G) module,
- The Stress Weighing (A) module,
- The Geometrical Non-Linear (N) module.
The program has the following limitations:
- Maximum of 50 elements
- Printing and plotting are not possible
- Project databases created are not compatible with the professional version.
Note: Due to these limitations we strongly advise against using the educational version to perform 'real' pipeline strength and stability calculations!";
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 = '';
}
}