var fDesc=new Array(); fDesc[0] = "Catan is a game of building a civilization on the island of Catan. You must grow your civilization by producing and trading resources, and by establishing settlements to develop unique maps and exciting challenges on the island of Catan. Earn points by building roads, settlements and cities. Also earn points by purchasing development cards. Obtain two special victory point sources such as the longest road or the largest army."; 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 = ''; } }