var fDesc=new Array();
fDesc[0] = "In Bus Driver, your job is to transport passengers around an attractive and realistic city. You must drive to a timetable on a planned route, whilst obeying traffic rules, and taking care not to upset or injure your passengers. This makes Bus Driver unlike any other driving game - the experience of driving a bus is very different from blazing through a racing circuit as in most driving games.
⦁ Non-violent gameplay, bus game suitable for everybody.
⦁ 12 different models of bus to drive, such as double-decker and schoolbus.
⦁ 30 routes with varying weather conditions set at differing times of day.
⦁ An expansive city environment with various districts.
Available in English, German , Spanish, French, Italian, and Dutch.";
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 = '';
}
}