var fDesc=new Array(); fDesc[0] = "Every year Sandy travels to the north with her grandmother to help her with her gift shop. This year Sandy found her grandmother crying because she must pay a loan to the bank of $10,000 in 10 days or she will lose her shop. Help her working for her and earn the money to repay the loan to the bank. The main objective of this game is to serve and satisfy your costumers and give them the gift they are asking for and reach the amount needed for each day. Santa will help you, he asked to his elves to work with you so you can do the job faster. In this game you will have different costumers, kids, clowns, and old women are among them. Each costumer has different attitude, some are patient and some are not. Don't make them wait too long or you will lose your costumers. When costumers appear you should select the gift they are asking for and give it to the elves to paint it and make all the decorations needed. After the gift is ready you should give it to your costumer and place it in a box if it's needed to charge the money."; 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 = ''; } }