var fDesc=new Array();
fDesc[0] = "Systems for Dentists Ltd is a well established software company which has developed quality dental practice management software for dental practitioners to use worldwide.
Some of the Appointment Book's most impressive features are:
- Unlimited number of appointment books
- Colour-coded appointments based on reason
- Appointment sessions based on patients scheme (i.e. NHS, private, dental plan)
- Search for vacant appointments including multiple users
- SMS and e-mail reminders
- Drag-and-drop functionality
- Cancellation lists
- On hold lists";
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 = '';
}
}