var fDesc=new Array(); fDesc[0] = "Appointment Book Network is a multi-user appointment scheduler for networked professional and business offices. Schedules up to 20 consultants per book, appointment lengths range from 10 to 240 minutes. Provides printouts of daily individual appointment lists and uses page templates to simplify detailed scheduling of each day of the week. The MLT version is customized to accept multi-line text entries in the appointment time slots. This allows easy entering and viewing of client appointment details: e.g. multiple clients can be appointed in the same time slot, client as well as service details can be entered together."; 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 = ''; } }