var fDesc=new Array(); fDesc[0] = "Dollars and Cents is a collection of three beautifully illustrated interactive money programs: Counting Coins, Spending Money, and Making Change. Counting Coins has four activities: Naming, Matching, Sorting, and Vending Machine. In Spending Money, students shop for items and pay for them with computer cash, using the exact amount or the next-dollar approach. In Making Change, the most advanced program, students function as store clerks, entering purchases and giving back change."; 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 = ''; } }