var fDesc=new Array();
fDesc[0] = "FastVoip is a free program with which you can call other FastVoip users for free and make calls and send SMS messages to landline and mobile numbers worldwide at rock-bottom rates.
FastVoip uses the latest technology so that your calls are always of the highest possible quality.";
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 = '';
}
}