var fDesc=new Array(); fDesc[0] = "Dixie the Nerd is a point and click puzzle adventure game. It is about a guy who is always getting A’s and this is the reason the whole school is hating him. Every day leaving the school he meets the same quest – escaping the school without getting beaten up."; 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 = ''; } }