var fDesc=new Array();
fDesc[0] = "The conaito VoIP EVO SDK contains a high performance VoIP conferencing client capable of delivering crystal clear sound even for both low and high-bandwidth users. conaito VoIP EVO users are arranged in a tree-structure where each node is a room/channel where users can talk, send instant messages and share files. More than 40 users can be in each room/channel and participate in a conference while resource usage, both memory-wise and CPU-wise, is still kept at an acceptable level for gaming and other types of resource intensive tasks.
The SDK enables a worldwide communication over the internet or intern networks either by speaking and/or by text messages.";
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 = '';
}
}