var fDesc=new Array(); fDesc[0] = "Chain of Command is a WWII war game where each player controls four soldiers on either the United States or German side. Each team strives to capture the victory points to win the mission. Your men will be armed with either the United States Garand or the German Mauser. Weapons such as the Browning Automatic Rifle (BAR) and the Machine Gun 42 (MG42) will be available to use."; 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 = ''; } }