var fDesc=new Array();
fDesc[0] = "VoIP Integration Phone Remote allows you to take control of a Cisco phone from anywhere with network connectivity.
Key strokes are sent to the phone which are interpreted as if the user had pressed the key on the actual phone. Screen updates show the screen as displayed on the device.
Choose from two methods to select and control a phone.
- With a Call Manager /Express End User that has device association you can control the phone via its IP address.
- With a Call Manager Admin user that has AXL permissions search right from within Phone Remote for a phone using it’s Extension, Description or MAC address. Call Manager Express XML User can search by Extension, or MAC Address.";
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 = '';
}
}