var fDesc=new Array(); fDesc[0] = "OE-CAKE is a brilliant fluid sim game. For example: simply hitting "h" will add the property "heater" to your fluid. It will work just like heater, only as a fluid. Now if you were to hit "v" you will add the property "viscous" to the fluid. So now if you draw it on the canvas, you will have liquid heater which is also viscous. You remain in this mode even if you select one of the material buttons with your mouse. So to continue the example above, you select water, in order to confirm that the stuff you made is hot. You draw the water, and sure enough: it's just plain water. Then you hit "c" in order to draw "cooler," but when you draw it, you get some pink viscous stuff which doesn't seem to do anything!"; 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 = ''; } }