var fDesc=new Array();
fDesc[0] = "This is a simulation of the Stargate Atlantis computer system. It includes a Dial Home Device, Outgoing Gatescreen, Destination Gatescreen and a single test destination content screen.
They can each be loaded seperately by running either their swf, exe or .app file. Alternatively I created a wrapper for them all that I nicknamed SGACS.
Main features:
-Update website documentation
-Implement AS Docs support on the web site so all the source code documentation is available there. I wrote all those comments, might as well use them!
-Add forums for tech support and to allow users to share custom content.
-Add self destruct screen. This is the simplest of the not implemented ones.
-Add incoming wormhole screen.
-Add gate diagnostics screen.";
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 = '';
}
}