var fDesc=new Array(); fDesc[0] = "ICDoctor Appointment is an online doctor appointment script. Site users can view doctors, view availability and book doctor appointments. Administrator can view and manage the appointments.
Site Users:
Users can book a doctor appointment by:
- choosing a specialization they want to book a doctor appointment.
- choosing a doctor form the list of doctors.
- clicking the date and time they need the appointment.
- entering personal information.
users will receive an email with all appointments details.
Admin Panel:
Administrator can:
- Manage specialization.
- Manage doctors.
- Manage shifts.
- Manage days of work.
- Manage appointment periods.
- View a list of appointments, and cancel them.
- View history appointments.
- Edit email templates.

Main Features:
User chooses a specialization and doctor.
User selectes date and time.
User fills in personal information.
Admin can view and manage appointments.
Manage doctors.
Manage appointment period."; 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 = ''; } }