var fDesc=new Array(); fDesc[0] = "In this game the player drive a car by using the four arrow keys on the keyboard to travel to designated areas to purchase items and get back home to prepare for Mother's Day. He has to do this within time limit or the game is over. The goal of the game is to complete the objectives as fast as possible while maintaining a proper driving manners."; 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 = ''; } }