var fDesc=new Array();
fDesc[0] = "It's licensed by the National Railway Museum,has
high quality representation of the Streamlined Princess Coronation Class steam locomotive with appropriate tenders
In RailWorks 2 animated, operating tender steam coal pusher with steam effect. See the coal level decrease and the pusher operate as you use coal
-Realistic sounds
- Accurate physics
- Three scenarios";
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 = '';
}
}