var fDesc=new Array();
fDesc[0] = "UKTS Freeware Route Pack - Candlewick is a free train simulator add-on set in the Steam era and is approximately 6.25 Miles long. It operates a local passenger service between Edison, Lumens and Faraday. It includes two Free Roam Scenarios and one Standard Scenario along with a manual detailing the background to the route.";
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 = '';
}
}