var fDesc=new Array();
fDesc[0] = "A CNS Vital Signs assessment is a reimbursable procedure that helps clinicians and patient’s measure, monitor and manage neurocognition and behavioral health by collecting a large number of clinical endpoints in a relative brief assessment…the assessment is immediately autoscored and presents the clinical endpoints in a useful dashboards and longitudinal graphing formats. The testing and reports can help clinicians assess and explain the patient’s status during the clinical encounter.";
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 = '';
}
}