var fDesc=new Array(); fDesc[0] = "Enigmo Deluxe is a 3D puzzle game where you move various streams of flowing liquid so that the droplets get to their destination. Liquids (water, oil, and lava) fall from "droppers" and will bounce around the walls of a mechanism. You move and rotate into position various types of bumpers, sliders, accelerators, and sponges in order to divert the flow of the falling droplets. The faster you complete each level, the more bonus you will receive."; 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 = ''; } }