var fDesc=new Array(); fDesc[0] = "ATS/Citymobil software enables you to quickly and easily design an ULTra system in an area of your choosing and see how it performs. You can:

- Get started with one of example networks or build your own network using a background map
- Edit networks by changing interconnections and adding or removing stations
- Set the level of demand at each station and let the simulator construct an origin-destination demand matrix, or enter your own demand matrix
- Run simulations in real time or much faster than real time
- See how the individual vehicles are controlled to wait at stations until passengers arrive and then directed to the requested destination station
- See how empty vehicles are called to stations if passengers have arrived but no vehicle is waiting
- See how many passengers are waiting at each station see how many vehicles are at each station, waiting empty, unloading or loading passengers
- See the mean waiting time at each station and overall, and the number of vehicles required"; 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 = ''; } }