var fDesc=new Array(); fDesc[0] = "Math Quiz Creator is an educational application for Windows that lets educators quickly generate printable math quizzes with answer keys for students six to twelve years old. Quizzes can be created using any combination of the following problem types:

- Basic arithmetic (addition, subtraction, multiplication and division)
- Fractions (Identifying fractions from shapes, simple addition, subtraction and comparisons)
- Number theory (Comparisons, Rounding)
- Money (Counting change)
- Telling Time (to the hour, half-hour, 15-minute interval, 5-minute interval, and minute)
- Word problems using table data or bar graphs
- Geometry (Identifying shapes, lines of symmetry, similar and congruent shapes"; 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 = ''; } }