var fDesc=new Array();
fDesc[0] = "Vital sign simulator simulates a patient monitor for medical emergency training. It can be combined with a cpr-manikin, to get a low-cost patient simulation system. It can be used with a dual monitor system; one monitor with controls for the operator and one providing the vital signs to the trainees. Heart rate, oxygen saturation, etCO2, respiratory rate, blood pressure and various moving ecg-samples can be set and changed.";
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 = '';
}
}