var fDesc=new Array();
fDesc[0] = "eFon Operator Panel is a professional client for operators. Operators can pick up incoming calls, put them on/off hold, initiate attended transfers, make inside or outside line calls, etc. Before you can use the application you have to fill some information fields in the Settings menu.
- IP: The IP address of MyPBX whose operator panel you want to logon. Don’t change the 5038 port.
- User name: admin.
- Password: For firmware version newer than 2.12.0.95 it is the same as your webpage’s password. For 2.12.0.95 and the version older than it you can just use ‘password’ here.
- Extension: The extension number of yours.";
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 = '';
}
}