var fDesc=new Array(); fDesc[0] = "Bossmen consists of seven unique boss battles. You are a “hero”, equipped with a lasergun and jetpack to defeat the Bossmen. The game has a typographic health system, with parts of the characters’ names disappearing as damage is taken.
n astute observer might ask, why are you fighting? Can’t we all get along? Well, being cubist, the Bossmen have taken a disliking to your supple round corners and high polygon count. And for Bossmen, disputes are not solved by words, but by lasers."; 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 = ''; } }