var fDesc=new Array(); fDesc[0] = "Flower Design Shop is an adventure game. In this game you are designing bouquets of flowers. If you're playing in story mode, there'll be a customer that will tell you what things he/she likes and what things he/she doesn't.

You'll know it by the symbols in the right hand part of the screen under the customer. Note that if there's an item with a sad smiley next to it, it means that the customer doesn't like this item. If there's a happy smiley, the customer likes it. Add the items the customer likes and avoid those he/she doesn't like."; 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 = ''; } }