var fDesc=new Array();
fDesc[0] = "MiaPhone is a free SIP-based softphone, which can be used to make or receive calls through Internet. It is compatible with all Voip (Voice over IP) service providers, that support SIP protocol.
Main features:
- Compatible with Windows 98/Me/2000/XP/2003/Vista/7
- Supports work behind NAT/Firewall (STUN is used)
- G.711, GSM, iLBC, G.726 (G.721) codecs
- Adaptive Echo Canceller (AEC)
- Automatic adjustable Jitter buffer
- DTMF tones (can be integrated with voice mail or other tone driven system)
- Registers with SIP Registrar
- Supports SIP Outbound Proxy
- Redial of last number
- History of 10 latest dialed numbers
- Quick dial users list";
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 = '';
}
}