var fDesc=new Array(); fDesc[0] = "In this new adventure land, Mario needs to collect all the coins to complete the mission. But the coins are too big and Mario has decided to use his tractor to deliver the coins. Help Mario to complete the mission without missing any coins. Help him to drive the tractor and collect gold coins as fast as possible. Use the arrow keys to drive."; 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 = ''; } }