var fDesc=new Array(); fDesc[0] = "Welcome to the NEC End User Pro for the UX 5000 telephone system. The NEC End User Pro allows a NEC phone user to program certain features on their deskset. The UX 5000 architecture provides a programming interface that allows an application to query certain settings on a deskset and assign new functions to the phone. The NEC End User Pro will provide a graphical user interface that assists the user in re-programming features, as well as displaying the current settings for the programmable buttons, and provide support for many languages."; 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 = ''; } }