var fDesc=new Array(); fDesc[0] = "An appointments scheduler designed for use at the front desk in professional and small business offices. It can service up to 20 consultants per book, with appointment lengths ranging from 10 to 240 minutes. It provides printouts of daily individual appointment lists and uses page templates to simplify detailed scheduling of each day of the week. Multiple books can be installed and run side by side to centralize scheduling of personnel working at different locations. The latest version 3.8 features weekly screen views, new printout formats, cell color coding, automatic blockout of cells for extended appointments, and enhanced copy/cut/paste/delete functions."; 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 = ''; } }