var fDesc=new Array(); fDesc[0] = "Roblox Studio is the program that Roblox games are played with. It also gives you the ability to create your own games, or places. Using the Studio you can script, build and test your places all before you show off your place to the rest of the community. If you want to make any kind of changes to your places, then you should use the Studio to make those changes."; 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 = ''; } }