var fDesc=new Array(); fDesc[0] = "This was developed for a Ludum Dare "warm up" contest, where we had only 24 hours to create our game rather than 48. I liked it so much I added many enhancements in the following week, and here it is! The contest had 2 themes, 'moon' and 'anti-text'. So this game takes place on the moon, and contains no text whatsoever. Not even numbers! It's in the classic Tower Defense vein, but with a distinct Space Invaders twist to it."; 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 = ''; } }