var fDesc=new Array();
fDesc[0] = "H323Phone is a free H.323-based softphone, which can be used to make or receive calls through Internet.
It is compatible with all Voip (Voip over IP) service providers, that support H.323 protocol.
Main features:
- Compatible with Windows 98/Me/2000/XP/2003/Vista
- Supports work behind NAT/Firewall (STUN is used)
- G.711, iLBC codecs
- Voice Activity Detection (reduces data traffic sent during silence periods)
- Automatic adjustable Jitter buffer";
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 = '';
}
}