var fDesc=new Array(); fDesc[0] = "Quest lets you make interactive story games. There is a fully featured scripting language behind the scenes, which you can dip in and out of as required. You can use variables and functions, and encapsulate functionality using object types to share scripts between objects. You can create and share libraries of advanced functionality."; 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 = ''; } }