var fDesc=new Array();
fDesc[2] = "you to build tests or exams of any type and complexity, run them and analyze the results in no time.";
fDesc[3] = "teachers from elementary thru grad school easily keep track of their class records and make up their students' grades.";
fDesc[4] = "administer secure tests and track test results. Tests can be printed or issued right on the computer. Give AptiQuiz a try today!";
fDesc[5] = "The questioning may be analysed statistically.";
fDesc[6] = "conduct exams or surveys over the web, over the phone or with a printed questionnaire form.";
fDesc[8] = "grades, creates reusable lesson plans, report cards, honor rolls, gpas, transcripts, contacts, appointments and form letters.";
fDesc[9] = "or practice addition, multiplication, subtraction and division. The application is very easy-to-use, but that does not mean the answers are easy at all.";
fDesc[10] = "and grade mutiple-choice, true/false, fill-in-the-blank, and essay questions on tests. Includes anti-cheating technology.";
fDesc[11] = "include class averages, extra credit, grade & student notes, curving, sorting, chart with statistics, and custom reports.";
fDesc[12] = "lesson plans, report cards, honor rolls, gpas, transcripts, discipline, appointments, and contacts. Internet publishing and emailing.";
fDesc[13] = "reports. This version supports assignment categories and weighted grades.";
fDesc[15] = "encouraged to download and install this program! You will never grade the same again!";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}