var fDesc=new Array();
fDesc[0] = "The Canadian Theme Pack is a fully integrated collection of graphics modules of all things Canadian. It covers (almost) everything a player would ever wish to play with a bold statement.
The Canadian Theme Pack includes the following individual graphic modules (aka GRFs) :
» Base Graphics (CanBase)
» Trains (CanRail)
» Road Vehicles (CanRV)
» Aeroplanes (CanAir)
» Ships (CanShip)
» Stations (CanStn)
» Cities (CanCity)
» Industries (CanInd)";
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 = '';
}
}