var fDesc=new Array();
fDesc[0] = "The ManneQuin series of human modeling programs has been the most successful in the world.
Features:
- Extensive anthropometric databases of men, women and children including 1988 Natick US Army and NASA-STD-3000
- Five levels of mannequin representation: mannequin, skeleton, HumanForm, robot, and stick figure. Also includes the physically challenged
- Completely articulated body within human ranges of motion
- Sophisticated 2D and 3D drawing/modeling tools
- Three-dimensional biomechanical predictions of the entire body
- Revised NIOSH Lifting Equation
- Frame-by-frame animation capabilities
- Animated walking and simulation
- File Import (3D DXF or 3DS files)
- File Export (3D DXF, 3DS files)";
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 = '';
}
}