var fDesc=new Array();
fDesc[0] = "Te netVoiz SoftPhone works with all Windows PC operating systems and you will need to have a microphone speakers or a computer headset/handset available with your PC to make calls.
Features:
- High quality service with very reliable phone network
- Outstanding customer support
- Over 5 years track record in the VoIP market
- No extra connection charges or any hidden fees
- High quality VoIP network with over 99% uptime
- Save up to 95% on your international calls
- International Service - Works Worldwide
- No account balance expiry - Life time validity";
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 = '';
}
}