var fDesc=new Array(); fDesc[0] = "The show is set in the future, some time after the year 2086, when two aliens from the planets Andor and Kirwin travel to Earth to search for allies against the expansionist Crown Empire led by the Queen of the Crown. In return for the help, the two aliens gave mankind construction plans for a hyperdrive device."; 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 = ''; } }