var fDesc=new Array(); fDesc[0] = "Pax Britannica is a one-button real-time strategy game by No Fun Games. Up to four players battle it out underwater, struggling to be the last one standing!

The A, F, H, and L keys control the four players, and the escape key quits. Gamepads are also supported

Holding down the button spins the needle on the radial menu in the middle of the player's factory ship. The needle will only travel as far as the player's current resources allow. Resources (gold? seaweed? who knows!) accumulate over time.

Releasing the button creates a ship that corresponds to the quadrant that the needle is pointing at."; 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 = ''; } }