var fDesc=new Array(); fDesc[0] = "Practice records management system for healthcare professionals. A clinical records management system designed for use by healthcare professionals.

Main features:

- a compact client/patient details database;
- a simplified records keeping system that provides quick access to individual client/patient case notes, easy editing and printouts;
- an integrated document scanning facility that allows clinical documents (lab reports, Xray reports, medical reports, referral letters, hospital discharge summaries, etc) to be stored as digital images and retrieved quickly for review/reprint when required."; 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 = ''; } }