var fDesc=new Array();
fDesc[0] = "Callforgain offers different services to cater to your calling needs:
PC to Phone - For users who are tech-savvy and telecommute a lot. Same account can also be used in any of the SIP devices compliant to the SIP statndards.
Callshop - For callshop owners who want the freedom to setup a physical store and be in control of his business.
Callback - For users who travel light, using their mobile phones to make affordable overseas calls.";
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 = '';
}
}