var fDesc=new Array();
fDesc[0] = "The 1010Talk VoIP Web Dialer plan is the best and least-expensive way to make US and International calls. Instead of using a normal telephone, the Web Dialer is an application that runs on your PC or Mac and allows you to call anywhere in the world.
Use your built-in speaker and microphone, or use a hands-free device and enjoy outstanding call quality. This easy-to-use application has an integrated phone keypad, address book and status bar to let you know how your call is progressing. It’s as easy as dialing a phone!
The VoIP Web Dialer plans also includes:
- Great, low US and International calling rates
- Easy, online account management
- 30-day money back guarantee";
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 = '';
}
}