var fDesc=new Array();
fDesc[0] = "PhonerLite is a clearly arranged application for Windows. PhonerLite enables your PC to use it for Internet telephony (VoIP , Voice over IP ). Pre-conditions are a full-duplex sound card , a microphone and speakers (alternatively a headset), an Internet connection and an account from a provider supporting the protocol SIP . PhonerLite supports several SIP profiles, each configurable independently.
PhonerLite supports state of the art encryption methods like TLS, SRTP and ZRTP.";
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 = '';
}
}