var fDesc=new Array(); fDesc[0] = "Circles is a unique, intuitive puzzle game where everything responds to your mouse. It presents itself without any text and asks you to experiment. By simply moving the cursor, you’ll uncover the underlying rules of each circle. According to the movements you make, they grow, shrink or move around the screen. You must find your way to the end point to complete each level."; 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 = ''; } }