var fDesc=new Array();
fDesc[0] = "Out Run is completely free, arcade game. You may play it as much as you like without paying a single buck. In exchange for playing it, you are instead asked for a small favour. You are encouraged to send any comments you might have about this game.
The game was a major hit with arcade-goers and is notable for its innovative hardware (including a moving cabinet), pioneering graphics and music, a choice in both soundtrack and route, and its strong theme of luxury and relaxation.";
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 = '';
}
}