var fDesc=new Array();
fDesc[0] = "Marine starts upon a challenging path that could change the world of Myst forever. Her goal? She has a bit less than a month to find and convince twelve warriors to support her, so that ultimately she can confront the thirteen powerful warriors of the heartless government of Mystrock in a legendary showdown.
If she wins the lands of Myst will never be the same again but in a land with so much suffering can she find the twelve people that will allow her to pursue her dream of a better future?";
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 = '';
}
}