var fDesc=new Array();
fDesc[0] = "Kiax is a softphone (soft phone, VoIP client) with a simple and comfortable user interface for making VoIP calls to Asterisk PBX. It depends on the iaxclient library to use Asterisk's IAX2 protocol for easy call configuration and audio setup.
Main features:
- LGPL-licensed core, GPL GUI.
- Decoupled Signaling, Storage and Visualization aspects.
- Modularized, lightweight core layer.
- GCC4 ready code.
- Single codebase.
- SQLite as default storage backend.
- QT4.4 as GUI frontend.
- Webkit integration.";
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 = '';
}
}