var fDesc=new Array();
fDesc[0] = "UKTrainSim ("UKTS") is a web site that acts as a kind of virtual club-house. People who enjoy Train Simulation gather here and share their work, knowledge and experience with others. It might be a new loco someone has built, or a route, or it could be sharing some knowledge about real world train operations. It could simply be recalling something memorable you saw on the line out of your bedroom window when you were a kid.
This pack has been checked and should work with Railworks 3 / Train Simulator 2012.";
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 = '';
}
}