var fDesc=new Array();
fDesc[0] = "Frontline PC is an easy-to-use software allowing the viewer(s) to fully communicate with one Frontline Communicator user.
Features:
- The audio/video communication between the PC and the Frontline Communicator or Frontline Gateway
- Real-time video decoding and viewing
- Real-time audio coding/decoding
- Audio and video communication starting at 50 Kbps of bandwidth
- Audio and video recording of communication sessions
- Reception and still frame capture (jpeg, bmp )
- Video backup and image management
- Easy resizing of images and video
- Call management
- File transfer between the transmitter and the PC
- TCP or UDP communication
- AES peer-peer encryption";
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 = '';
}
}