var fDesc=new Array(); fDesc[0] = "Marty Saves Christmas is a platform game where you have to jump and run to the door to the next stage avoiding numerous enemies and traps, which fortunately can be fought with the traditional superballs. Some paths must first be opened up by activating switches, and in order to cross spiked floors you better look for a Magic Potion. And don't forget to pick up presents to earn extra lives. There are also pieces of armor protecting you from one hit each."; 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 = ''; } }