var fDesc=new Array(); fDesc[0] = "The client automatically receives the menu after connecting to the server thus assuring that the menu is up to date! Expand the menu tree (A) and check the desired quantity but make sure to select the table you are serving first (B). If you want to send the order to the DigiWaiter server press the Waiter button. The 'pencil' button retrieves fresh data from the server and the 'computer' button let's you reconnect in case of a problem."; 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 = ''; } }