var fDesc=new Array();
fDesc[0] = "This adicting game trys to simulate a reall-time game played on the Bop It handheld toy by Hasbro Entertainment.
Play against the computer on 2 different game themes including a classic version of Bop It, and an insane Trick Bop theme.
and the best part: connect to another gamer from anywhere across the globe and have a raging Bop It competition while the rhythm gets faster and faster!
Main Features:
- Online one on one gameplay against a partner!
- 16 cool rhythms to unlock as you play!
- Play the game on 3 themes: Bop, Trick Bop, and 1on1.
- two different game modes: BeatBop, and VoxBop.
- unlockable Ping - pong bonus game!
- 3 voice settings to choose from.
- the ability to send your score to the Lighttech Interactive score server";
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 = '';
}
}