var fDesc=new Array();
fDesc[0] = "Make a call anywhere - on mobile or landline phone to save money and keep in touch with friends and family. SuperCalls can save you up to 98% on your international
phone calls. It connects you using your PC with headphone. Very easy to use!
Features:
-No Fix Per Month
- No Hidden Cost
- No Expiry
- Only Pay that you Use
- Low Rates calling
- Crystal Clear Voice
- Easy Rechargeable
- Use anywhere around the world";
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 = '';
}
}