var fDesc=new Array(); fDesc[0] = "Deep within several levels of security in a hidden facility lies a datacenter filled with hundreds of technological secrets.

The data is cut off from any networks, but you have managed to break into the robotics network which gives you access to all of the different types of robots in the facility. Program and use the robots to give you access codes to more and more areas and eventually the room where the datacenter is hosted. The robots all have different special abilities and can help each other to get to the security node in each level."; 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 = ''; } }