var fDesc=new Array(); fDesc[0] = "Office Paintball is a flash stress relief shooting game where you shoot a bunch of smiley faces that pop-up in different places of your screen. The farther and smaller the smiley face is, the more points you get for putting a paint ball on it. You can advance to the next level only if your accuracy and score are both high enough."; 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 = ''; } }