var fDesc=new Array();
fDesc[0] = "The "Learning Multiframe" introductory training will take you through all the basics of working in Multiframe 2D, 3D and 4D:
-exploring the user interface, how to customise windows to optimise your productivity in the software
-modelling frames in the Frames window
-applying restraints
-applying point and distributed loads
-analysing the structure
-interrogating the analysis results,
-visualising the structure in the Plot window
-working in 3D, including";
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 = '';
}
}