var fDesc=new Array(); fDesc[0] = "See if you can solve the bewildering quiz in this intricate trivia game. This quiz contains various challenging questions that are all about geography. You will need to progress through the game and answer all of the questions correctly in order to win this game, but you must remember that you have only two lives throughout the quiz. If you answer a question incorrectly you lose one life. If all lives are gone then you will need to start over!"; 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 = ''; } }