var fDesc=new Array();
fDesc[0] = "I LOVE U PHONE - a virtual subscriber network of new generation
Main Features:
- Calls from PC on PC (from virtual number on virtual number) FREE OF CHARGE!
- Calls from PC on telephone numbers of general use and mobile telephone numbers at ІР-telephony rates *.
- Conference connection with up to 5 participants simultaneously.
- Possibility of personal tuning of sound quality by means of "Quality/Delay".
- Possibility of talk recording.";
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 = '';
}
}