var fDesc=new Array(); fDesc[0] = "A text-based motorcycle speedway racing game. Thisprogram simulates a wide variety of meetings from therider names and averages entered by the user. A numberof popular meeting formats (e.g. British Elite Leaguematches) are included, but a scripting language allowsthe creation of new meetings and the customisation ofexisting ones. Meetings may be run automatically; orinteractively with up to nine players competingagainst each other or the computer. An editor is alsoincluded that allows team line-ups to be loadeddirectly from a file."; 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 = ''; } }