var fDesc=new Array();
fDesc[0] = "VoipMGL can save you up to 80% on your international phone calls. It connects you using your internet connection and any phones.
No contract, no access number, no aircharge on your phone. This Phone-to-Phone enables you that connect to your friends and family from everywhere. No need any softphone.
System requirements:
- PC running Windows 7, Vista, XP, 2000 (with SP2)
- 300 MHz processor
- 128 MB RAM
- 10 MB free disk space on your hard drive
- Sound Card, and headset with microphone";
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 = '';
}
}