var fDesc=new Array();
fDesc[0] = "The Fluid Management Tool (FMT) software operates in conjunction with the BCM - Body Composition Monitor and manages your patients’ data on your personal computer (PC).
Main features:
-displays results relative to reference ranges of healthy individuals and dialysis patients
-shows each patient’s progress by depicting the results in plots for easy monitoring
-allows export of all plots and tables
-allows the combined analysis of blood pressure and fluid overload
-offers convenient data management:
-organize your patients into groups
-add missing data, comments or ID
-create new patients and patient groups";
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 = '';
}
}