var fDesc=new Array(); fDesc[0] = "The hotel module for 3CX Phone System adds additional functions to 3CX Phone System to allow it to be used in hotels or other hospitality environments. The hotel module consists of a front end application and a windows service. The Windows Service operates in the background and allows for integration with the Property Management System. With the integration, many of the functions can be triggered from within the PMS software."; 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 = ''; } }