var fDesc=new Array();
fDesc[0] = "WIN-DIGIPET is a far-reaching, intelligent and very user-friendly program to control model railroads, using Märklin-Digital / Uhlenbrock/Modeltreno Intellibox components.
- Easy data input and execution- even for the computer novice. WIN-DIGIPET immediately points to the data in error.
- Support of Uhlenbrock/Modeltreno INTELLIBOX with extended protocol.
- Transfer speeds from 2400 to 19200
- All types of loco decoder types such as Märklin (old and new Motorola-format), DCC (Lenz), Selectrix and Uhlenbrock can be used on one layout
- Considerably faster track occupied messages using event interrogation
- Feedback of solenoid devices and locomotives. Updates on screen 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 = '';
}
}