var fDesc=new Array();
fDesc[0] = "The C-Bus Toolkit software is an application you run on your personal computer to configure and commission C-Bus Installations. This allows the customers to install and support the range of C-Bus hardware products. C-Bus Toolkit is used for commissioning C-Bus Installations by configuring the behaviour of installed C-Bus hardware.
C-Bus Toolkit also installs C-Gate Server software which can be used as part of a C-Bus control system. This means you can use the included C-Bus C-Gate software as a permanently installed control system for a C-Bus Installation.";
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 = '';
}
}