var fDesc=new Array();
fDesc[0] = "The Great Scenario Challenge #1 (GSC1) was a competition run by the UKTrainSim community.
The aims were simple:
-Create a scenario pack that was exciting, interesting with many hours of entertainment
-Make the packs simple and straight forward to use. Just download, install and play!
Contents:
-22 scenarios
-All the rolling stock required to run them";
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 = '';
}
}