var fDesc=new Array();
fDesc[0] = "TrackPlan is a software application to help in the design and verification of railway interlocking systems.
Using TrackPlan, a diagram representing the components of an interlocking system (consisting of track segments, points and signals) as well as a control table representing the routes through this design can be quickly and easily created. By analysing the information in the diagram and control table using model checking, TrackPlan can then determine whether or not collisions or derailments might be possible.";
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 = '';
}
}