var fDesc=new Array();
fDesc[0] = "IC4 is a windows based configuration tool for the Siemens STxxx series of traffic controllers.
IC4 has a series of screens where configuration data is entered, this information is validated and compiled into the required format for the controller. A prom can then be generated ready for installation into the controller, or the prom file can be downloaded directly to the controller.
It enables the downloading/uploading of configuration
data to/from the controller, printing and viewing of configuration data, without the need of a dongle.";
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 = '';
}
}