var fDesc=new Array(); fDesc[0] = "Pool Wars is a 3D turn-based stategy game. It's very similar to a pool game set-up, but has a unique storyline attached. Two tribes meet to battle over a secret crown. You assume the rank of general for your tribe. At the beginning, you own a troop with one king, three magicians and six soldiers. The most important task is protecting your king and killing the one of your rival's. If the magicians are still alive, there is nothing threatening the king because of their magic. For this reason,you may need to wipe out his magicians before you win a battle by killing his king."; 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 = ''; } }