var fDesc=new Array(); fDesc[0] = "Cubozoid is both a fast-paced arcade game and a brain-teasing challenge; therefore, you must possess both a quick wrist and a sharp mind to win. Your task is to keep a string of colored cubes from filling up your computer screen. As the blocks wind their way across the game board, you must fire your own cubes at the procession in a frenzied attempt to create matches of three or more blocks of the same color. When you succeed, the corresponding cubes erupt in a dazzling display of multicolored particles.

Relief comes in the form of special blocks with unique powers. The Lighting Bolt, for example, zaps an entire row or column of cubes, while the Chameleon changes into the color of the block it hits. Learn to use these cubes well and you'll get to visit several striking locations around the world, including India, China and the Old West."; 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 = ''; } }