var fDesc=new Array();
fDesc[0] = "SimBaby is the advanced infant patient simulator for team training. With realisitic anatomy and clinical functionality, SimBaby allows learners to practice and perfect their skills in a risk-free environment.
- Highly realistic infant patient simulation training provides practice of teamwork, leadership and communication skills in a risk-free environment.
- Durable and dependable for long term use and cost efficiency.
- Interactive manikin gives immediate feedback to interventions allowing learners to think critically and adjust their care plan accordingly.
- Software is easy to operate and allows users to build basic to advanced level scenarios depending on the learning objectives.
- Automatic debriefing based on the event log synchronized with video pictures provides immediate, detailed feedback on performance and optimizes the simulation as an educational tool.
- Logistically convenient and portable with quick and easy assembly and disassembly.";
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 = '';
}
}