var fDesc=new Array();
fDesc[0] = "3D Virtual Human Anatomy Studio is a highly-detailed and accurate human anatomy reference application. In a rich, accessible 3D environment, 3DVHAS reveals both superficial and deep muscles, tendons, and bones.
All of the expensive anatomy books in the world can't paint a complete picture of the complexities of the human body. In fact, the most difficult aspect of learning anatomy is attempting to piece together a functional 3D mental picture based on the array of 2D images typically available. But even Gray's Anatomy will make perfect sense after a quick cross-reference with 3D Virtual Human Anatomy Studio!
Main Features:
- Easy mouse over discription
- Wikipedia discription
- Easy toggle of shading
- Dynamic Lighting
- Muscle indexing
- Physiological Morph
- Help button
- Locomotion mode
- Turn Table
- Orbiting Camera
- Mirror flip";
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 = '';
}
}