var fDesc=new Array();
fDesc[0] = "Whether you’re looking for value or leading edge technology, with Physio Logic® you can choose the features that are right for you.
And, no matter which model you choose, your Physio Logic® monitor will provide accuracy you can depend on.
What’s more, every unit is guaranteed for life against defects in materials and manufacturing.
With Physio Logic® you also get a free nylon carry case and a helpful journal so you can chart your readings. And, you can request additional copies or download it on-line.";
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 = '';
}
}