var fDesc=new Array(); fDesc[0] = "In PIZZA PLACE, you are in charge of deliveries for the neighborhood pizza parlor for one night. And, the program is FREE! You take phone orders, tell the crew how many pizzas to bake and tell the delivery car where to go. The program teaches mental math, logical thinking skills and good business practices. The better job you do, the more money you make."; 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 = ''; } }