// Place this for loop where you want to quiz to be displayed.
   
for (var i = 0; i < quiz.length; i++) {
    quiz[i].showForm(i);
}

// BUG FIX: In Netscape 3 and greater, forms are not reset on reload.
// This for loop is used to automatically reset the quiz forms if the 
// user reloads the page.

if (navigator.appName == "Netscape" && 
	parseInt(navigator.appVersion) >= 3) {
		for (var i = 0; i < document.forms.length; i++) {
        document.forms[i].reset();
	}
}
