var fDesc=new Array(); fDesc[0] = "Spy Car is a game where you get in your spy car and try to accomplish these missions. You blast the enemy to bits, launch yourself up into the sky, and try to collect as much money as possible. After each level you can buy new upgrades at the shop for your car."; 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 = ''; } }