var fDesc=new Array(); fDesc[0] = "Salt is a game where you sail across a vast ocean exploring different islands. The world is a vast ocean filled with islands of different shapes and sizes to explore and loot. These islands are procedurally placed and generated. By default, everyone’s world will be generated the same. This means you can tell your friends about where you found a pirate village or an awesome treasure chest."; 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 = ''; } }