var fDesc=new Array();
fDesc[0] = "TecQuipment’s Structures Software is ideal for students of civil, mechanical and structural engineering. It allows them to perform computer-simulated experiments which study the principles of structures. The Structures Software is the ideal companion to
TecQuipment’s hardware modules (STR2 to STR20). It includes a simulated form of each hardware module. The software is a useful tool when used on stand-alone or
networked computers.";
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 = '';
}
}