var fDesc=new Array();
fDesc[0] = "Young Indiana Jones Instrumentof Chaos is a small action game, developed by Sega Genesis.
Young Indiana Jones, a secret agent, is the only one who can stop the Germans from building a Doomsday Zeppelin, which will contain many powerful weapons.
In your mission, you will have to travel in countries like Egypt, Tibet or England.
So, with the help of the keyboard/mouse, you must help Youngm Indiana Jones to accomplish these missions. The only resources you have are a pistol and two grenades, but it also has the option to swing his whips.
So, now it's your time to be a hero.";
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 = '';
}
}