var fDesc=new Array();
fDesc[0] = "A Formula 1 game with real teams & drivers, from the 1995 season. Including Benetton, Ferrari, Williams, Jordan, Lotus, Minardi, Tyrrell & McLaren. Also there are 16 circuits including the Monaco Grand Prix, so you can race for real against the might of Schumacher & Hill.
The game also has four different difficulties. The game has its fun and you are able to play 2 players in it which always better then not having it.";
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 = '';
}
}