var fDesc=new Array();
fDesc[0] = "USPIH is a software tool which allows :
- to estimate the state of organism from the position of its functional, hemodynamic equilibration, water metabolism and gas homeostasis, that are connect with fermentative and immunological correction.
- to define a predisposition to diseases of central nervous system, cardiovascular system, internal, locomotor apparatus, circulation of the blood, metabolism and other pathology.
Its peculiarity is that it does not have a database of patients, only works with Internet connection and exporting the results of diagnostic applications in Open Office Write or Microsoft Office Word.";
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 = '';
}
}