var fDesc=new Array();
fDesc[0] = "Painless allows your staff to spend less time in the supply closet and more time at a patient's side. The newly released Painless 8 features a Forecaster to predict when it's time to replenish your supplies. All you need is an Internet connection and you can get up-to-the-minute, real-time stock and pricing information. Through your Painless software, you will be able to predict lead time and know exactly when to expect your order.";
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 = '';
}
}