var fDesc=new Array();
fDesc[0] = "Backup Recording Viewer for NS is a standalone Windows application that provides the following features:
Main Features:
- Compatible with Panasonic NS1000 version 3 and up
- Support for NS1000 backup data
- Windows based client application compatible with Windows 7 and Windows 8
- Import the backup files when the user starts the application
- Audio files are presented along with the time of day, extension, caller ID, caller Name.
- Up to 16 different backup locations can be set in the application in order to support up to 16 NS1000 in the same time
- Time synchronization and time zones set per each backup folder, in case the NS1000 PBXs are spread geographically on different time zones
- Audio files are stored as G711 Alaw / Ulaw wave files, depending on the NS1000 setting
- No CTI License required in NS1000
- No 24x7 Server required";
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 = '';
}
}