var fDesc=new Array(); fDesc[0] = "The Hospital Database Software helps you organize patient data, staff, medical condition data, and billing information. The program is intended for field clinic use, where internet available may be limited, but access to immediate medical information is essential to operations. You can search, sort and filter patient data instantly; complete visit management and reporting; keep accurate track of staff and employee data; generate patient registration forms for delivery to medical personnel and more."; 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 = ''; } }