var fDesc=new Array();
fDesc[0] = "Explore human anatomy in an easy and convenient way. Easy-to-use 3D controls will help you investigate complex anatomical structures. Use our dynamic search tool to find and locate objects from thousands of anatomical structures
Features:
-Anatomically accurate, high detail 3D model of human body
-Easy way of navigating and exploring human body
-Fast search function over 2500 human body parts
-Quiz feature to test your knowledge
-Suitable for students, teachers and everybody interested in human anatomy
-Frequent updates and additions for all platforms";
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 = '';
}
}