var fDesc=new Array(); fDesc[0] = "In this game you're whisked away to a lush world that is slowly being poisoned by a mysterious dark force. Your artifact is the key to restoring this beautiful world, but dark forces stand in your way.

Your goal in this game is to protect the artifact and save this dying world."; 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 = ''; } }