var fDesc=new Array(); fDesc[0] = "Dinosaurs, playing five-a-side American football. And yet it
is fun. Football-o-saurus is a fast paced game of 5-a-side dinosaur football. You control your dinosaur by simply pointing where you want him to move to, and pass the ball by clicking on where you want to aim. The computer controlled dinosaurs are all very intelligent and will run into space when their team has the ball, and mark their opponents when they are defending so you have to put together a good move to score a goal. The game is networkable so up to 10 people can play against each other over a local network or the Internet."; 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 = ''; } }