var fDesc=new Array(); fDesc[0] = "The system books an appointment from your client list. If it is a new client, add the client from the New Client Entry Form. If the client has just finished an appointment and is booking the next appointment, you can use the quick forward buttons that will move to a future date, from one to six weeks. The system books an appointment from your client list. If it is a new client, add the client from the New Client Entry Form. If the client has just finished an appointment and is booking the next appointment, you can use the quick forward buttons that will move to a future date, from one to six weeks. The appointments are displayed in different colours so you can see at a glance the required treatment. Each time your client completes an appointment, the information is stored on the system. This information can be accessed from the client list or the actual appointment. The information can be used simply to see what treatment the client had on their last appointment, or added to a query when targeting clients in a mail shot."; 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 = ''; } }