var fDesc=new Array(); fDesc[0] = "21st Century Earthquake Simulation is a realistic simulation of a major earthquake in Los Angeles, California. LA Freeways have collapsed, gas lines have ruptured, fires are everywhere, people are panicking. Best of all, you are the mayor, and it's your job to restore the city to normalcy!
What will you do first? Battle the fires? Control the toxic spills? Arrest the looters? If you don't get the roads repaired, it will take longer to move your emergency vehicles. If you can't stop toxic fires, your police may end up in the hospital! Let the rioting go, and the emergency crews may refuse to drive where you direct them! Everything is related, just like in real life. The choices you make affect lives and property (and your chances for re-election!)."; 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 = ''; } }