var fDesc=new Array(); fDesc[0] = "The Princess and the Dragon is an adventure game where you have the goal to rescue the princess from the dragon. You will need good hand eye coordination and a strategy to avoid all of the dragons fireballs. The program provides a high score board for this game, to compared to your friends and post your scores.

You can use your arrow keys to move, the spacebar to jump. You must collect the book and the rose, or you won’t be able to move to the next level."; 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 = ''; } }