var fDesc=new Array();
fDesc[0] = "This time, the good soldier again saves the Earth! Alien Invasion is not a problem, because Victor is armed with versatile weapon, and he is the best strategist!
Shoot with a machine gun, a homing grenade launcher, a pistols and other of many weapons units! Use the knife where necessary, and if scary - do tackle! This is CONTRA guys! Here is the hardcore, here is the action - here the most controversial battle of virtuality!
Do not miss the chance to play in a remake of the good old game of our identities, you have to play - save the earth, NOW!
Controls:
Move: WASD.
Shoot: J.
Jump: K.
Strike of Knife: L.
Tackle: Arrow S+K.
Make a seat: S.
Change Bonus: SPACE.
Restart: R.";
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 = '';
}
}