var fDesc=new Array();
fDesc[0] = "Bombardix is the main character of this awesome game. The objective of the game is quite simple: to kill bosses on each world and to score as many points as many points as possible. You have to kill all monsters in the game field and find a door to complete the current level and proceed to the next one. Many different bonuses will help you on your way: (Extra Life, Extra Bomb, Extra Explosion, Time-Fuse, Monster Freeze, Walk Wall, Armageddon, SpeedUp, Shield, etc.). When you complete all levels on all worlds and kill all bosses - you win! Let the luck be with you! Only the bravest and nimblest will be able to get everything!
Game features:
- breathtaking action!!!
- 3D rendered cutscenes
- 120 levels!!!
- 5 giant game worlds!
- 9 different bonuses;
- 5 big bosses;
- three levels of difficulty;
- beautiful graphics;
- high-quality sound and music;";
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 = '';
}
}