var fDesc=new Array(); fDesc[0] = "Cathy's Crafts is a time management game where you'll help Katie develop her shops empire. Customers will enter a shop looking for the specific products. When a customer decides what they’d like, a bubble will pop up over their head displaying the item of their choice. Once their order is complete, a customer will move to the cash register, and a money icon will appear. The faster you help the customer the happier they will be and the more money you'll get."; 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 = ''; } }