var fDesc=new Array(); fDesc[0] = "iCafe Manager is a Client-Server application and is made up of two parts, the Server and the Client Terminals. The iCafe Manager Server is managed from the server, and all its features and functions are available on the server screen. It is possible to perform all tasks such as viewing the Status of the Client Terminals; viewing and managing Rate Plans, Customer Information, Products, and Services; editing the Application Settings; viewing various Reports; and obtaining Help on all features."; 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 = ''; } }