var fDesc=new Array();
fDesc[0] = "StarQuest Online, players can assume the persona of a character living, exploring, fighting, and possibly dying in the 23rd Century. As a intrepid Starfleet officer, swashbuckling pirate, devious smuggler, deadly bounty hunter, wealthy merchant, or ordinary civilian, players shape this world and its history into whatever they wish.
Features of StarQuest:
- Scientifically accurate starmap containing over 17,000 unique star systems containing over 100,000 unique planets
- Play as a person, not a starship
- Open player vs. player combat, with safe zones patrolled by police or security forces
- Open starship vs. starship combat, with safe zones patrolled by military warships
- Serve on military starships in a number of crew positions
- Advance in rank to command your own starship
- Player owned starships
- Player owned housing
- Player owned colonies
- Unlimited amount of gameplay options, you have the galaxy in your hands.";
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 = '';
}
}