var fDesc=new Array(); fDesc[0] = "Spherical Chess 400 is a chess-related game classified as a royal queens game. You have to capture your opponent's last queen to win. Each player begins the game with 8 queens. Once the last queen of either player has been captured, the game will end immediately. Queens can be attacked from all 8 angles regardless of their placement within the flat 2-D gameboard since there are no real edges. Look for ways to attack higher-value pieces with lower-value pieces."; 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 = ''; } }