var fDesc=new Array(); fDesc[0] = "Filfre is a Windows interactive fiction interpreter. It can be used for playing interactive fiction stories, also known as text adventures. These stories are available in a variety of different formats. Filfre supports the most long-lived and common of these, the Z-Machine, as well as a newer virtual machine called Glulx that is a successor of sorts to the Z-Machine."; 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 = ''; } }