var fDesc=new Array();
fDesc[0] = "This is a new single player mission for Jedi Academy. It utilizes models, skins, and saber models.
Main Features:
- New and different opponents / challenges in each level of the game
- Custom SP maps (13 in all including 2 bonus and 1 cinematic level)
- Custom missions with helper NPC's
- Custom menus including saber descriptions
- Custom saber models
- Custom saber abilities
- Custom sounds and sound effects
- Custom music
- Custom visual effects
- Custom weapon effects
- Custom skins";
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 = '';
}
}