var fDesc=new Array();
fDesc[0] = "SSuite FaceTime is an easy to use P2P VOIP and Video Phone combination.
FaceTime Video phone does not rely on third-party vendors or special internet websites to make calls. It is perfect for LAN networks.
All you need is a headset, microphone, and / or a web camera to make a call. FaceTime works only on LAN, DSL, Cable, or 3 / 4G broadband connections. The minimum bandwidth required is 128 Kbps (continuous).";
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 = '';
}
}