var fDesc=new Array(); fDesc[0] = "Advanced Hospital Management System is a software package designed for hospitals to deal with all the day to day operations taking place. It covers various fields like Inpatient admissions, OPD patients records, treatments prescribed, billing, appointments, and more. You can monitor exact revenues and bills, create custom reports with all your clinic info and endless details, and many 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 = ''; } }