var fDesc=new Array();
fDesc[0] = "BT Office Communicator is a free software download for your PC. It can greatly increase the value of your BT Business Broadband Voice (VoIP) service.
With BT Office Communicator installed, your PC becomes a multi-featured phone.
Plug in a handset, or headset with microphone and you can make and receive voice calls on your Broadband Voice account. It works anywhere you have broadband access. Add a web cam and you can also make video calls.";
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 = '';
}
}