var fDesc=new Array(); fDesc[0] = "Draw Way is a funny adventure game where you will test your drawing abilities. You will use your drawing skills to survive the bombs, rockets and more. You must draw your way to the exit point and avoid all the traps on your way. You can use the left mouse button to draw and the right mouse button to erase."; 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 = ''; } }