var fDesc=new Array(); fDesc[0] = "It's World War II, and every encounter is to kill or be killed. As captain of Battleship 88, you know that the entire crew is well trained and prepared for battle. Expertly conducted, your crew - and thus your ship - can operate as an extension of your body and mind. Only by thinking on your feet, knowing your enemy, and capitalizing on your every opportunity can Battleship 88 make it safely back home to America. Your men are counting on you."; 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 = ''; } }