var fDesc=new Array(); fDesc[0] = "Zirconia 2: Battle is a 2D shooter in which you battle a computer opponent indirectly. The screen will be split: with you on the left side and your opponent on the right. When the match begins, enemies which do nothing (except move) will spawn. Players must defeat these enemies and collect coins that they drop, of three different colors. You (and your opponent!) have a hand of up to 3 cards at a time which, when used, will have varying effects. You must have the appropriate amount of coins in order to play a card. There are many different strategies you can use here."; 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 = ''; } }