var fDesc=new Array();
fDesc[0] = "With LocCommander an operator can easily control his model railroad.
Features:
- Support for the ESU ECoS(Motorola, DCC, LGB and Selectrix decoder systems) and any other digital system compatible with the PC Interface Protocol published for the ECoS (e.g. Märklin® Central Station 60212).
- Support for Märklin® digital system via the devices 6021/6051 or any other control system compatible with the Märklin® 6051 interface device (P50 protocol).
- Simplified representation of a model railroad in a 2 dimensional grid layout with multiple layers support.
- Object management via LocCommander for the ECoS.
- Manual and automatic control of trains, cranewagons, turnouts, decoupling rails, signals and switches.
- Routes.
- Real-time visualization of track occupancy.";
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 = '';
}
}