var fDesc=new Array(); fDesc[0] = "NextPatientPlease is a Windows application program that allows doctors (or any other professionals in this domain) to inform the reception desk that they are free for the next patient (or client). At the press of a key, the reception desk is alerted that you are ready for your next patient. The alert consists of an optional customizable tone, popup window with your name and room and a “colored light”. The receptionist can choose from a selection of provided tones for each room (or record a new tone) and select a color for each room. It is then easy for receptionist to know which room is calling, audibly and visually."; 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 = ''; } }