var fDesc=new Array();
fDesc[0] = "E-Z Frame Platinum Software is an easy-to-use, easy to setup and affordable option for optical retail management shops.
Main Features :
1. Patient Records Management
- Track patient demographics with a one-page layout
- Individual/family patient and insurance ledgers
- Multiple and repeat recall dates
- Manage patient guarantor information
2. Appointment Scheduling
- View, schedule and change appointments by day, week and month at-a-glance; configure office hours/closures
- Assign and track diagnosis and procedures
- Print day sheets
- Confirm appointments, double-book appointments and schedule appointments for non-patients
3. Rx Processing
- Track frames Rx and soft/hard contact lens Rx
- Automatic pricing by insurance plan
- Print lab orders and tray tickets
- Quick Rx entryno keystrokes necessary
4. Practice Analysis and Marketing
- Analyze patient demographics
- Create and print letters, labels and postcards using Microsoft Word
- General results for welcome, recall and referral letters";
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 = '';
}
}