var fDesc=new Array(); fDesc[0] = "As a pioneer on the island of Catan, your goal is to grow your settlement by producing and trading resources like grain, ore, and wood. Expand your settlements with roads and cities and be the first player to earn 10 victory points and win the game. Random maps are created each time you play so each single-player game provides a new and exciting challenge."; 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 = ''; } }