var fDesc=new Array();
fDesc[0] = "SKYBO is an PC to phone dialer application that let's you use the pc as a phone. In order to use the software, your computer must meet the following minimum 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 a headset
- Internet Connection broadband: 56kpbs dialup,Cable, -DSL, with minimum 64 kbit/s up/downstream)
However, in order to take advantage of all of the advanced features of skybo and to experience the best sound quality possible, it is highly recommend a better configuration.";
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 = '';
}
}