var fDesc=new Array(); fDesc[0] = "Adventures of Dixie is a simple 2D platformer that tells of the adventures of the Dixie slug. He moves very quickly and jumps high, this allows him to overcome various obstacles on the way. He has to dodge spikes, water pits, abysses and spinning circles on which spikes are located. Help Dixie get a taste of adventure! Simple control, only four keyboard buttons + one mouse button are involved."; 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 = ''; } }