var fDesc=new Array(); fDesc[0] = "1 Minute Warfare is turn based strategy game. You control a tank and your goal is to destroy your enemy. There are multiple power-ups that you can use against the other player. You can call an air strike, drop atomic bombs, or even lightning. Some of the power-ups are available at start, but you must pick the rest of them by picking crates; crates are dropped from the sky on random location on the battlefield."; 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 = ''; } }