var fDesc=new Array();
fDesc[0] = "Train Valley is a railroad construction and train simulation game. You build railroads in order to connect cities, tunnels and bridges. You manage increasing traffic by constructing crossroads, switches, circles and figure 8 intersections so that multiple trains can run without delays at the same time.
Train Valley lets you play through 4 seasons: Europe (1830-1980), America (1840-1960), USSR (1880-1980) and Japan (1900-2020).";
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 = '';
}
}