var fDesc=new Array(); fDesc[0] = "Another game written to test out some other bits and pieces in Slick. Kitipong is essentially a Bejewled clone with a oriental/cat theme - um, just try it to understand! Still a bit of work to do on how new tiles are added - but mostly there and a nice example. Development time around 5 hours so far."; 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 = ''; } }