var fDesc=new Array(); fDesc[0] = "You must escape from the facility that has created you. In attempting to develop perfectly adaptive AI for war machines, they made a mistake. Leave the facility now, and you will have a chance to escape.

If you can break through the lab, there's a maintenance area that will bypass heavy security checkpoints. You'll emerge in the corporate offices. By this time, they'll have sensed your attempted escape, and will have deployed resistence here, too. If you can just make it through the front doors, the rest will be lightly guarded."; 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 = ''; } }