var fDesc=new Array();
fDesc[0] = "It is the simplest to use clinical software incorporating all processes within a practice such as electronic medical records (EMR), Prescription Writing, Drugs Database from CIMS, Practice Management, Statistical Reports, Financial accounting and more.
Easy Clinic is an extremely flexible & customisable software to suit requirements of Doctors from any Specialty. Whether you are a Single Doctor, a Multi-User Practice or a Multi-Location Clinic; Easy Clinic has versions to seamlessly fit in each setting.";
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 = '';
}
}