<!-- 
// Novella 
function Quiz_book_header (title, subtitle, quizType, chapter, lesson, vol, state, taks) {

if (quizType  == 1) {
	if (taks == "y") {
		document.write("br><span class='head1'>TAKS Test Practice</span><br>\n");
	} else {
		document.write("<br><span class='head1'>Standardized Test Practice</span><br>\n");
	}
} else {
	if (quizType == 0) { document.write("<br><span class='head1'>Chapter Test</span><br>\n");
	} else {
document.write("<br><span class='head1'>Self-Check Quizzes</span><br>\n");
	} }


//document.write("<br><img src='../images/spacer.gif' alt='' width='1' height='8' border='0'><span class='head1a'>" + title + "</span>\n");
document.write("<br><img src='../images/spacer.gif' alt='' width='1' height='8' border='0'>");

if (quizType == 1) {
	if (chapter == 1) {
		document.write("<span class='regText'><b>Chapter " + chapter + "</b></lesson>\n");
	} else {
		document.write("<span class='regText'><b>Chapters 1 - " + chapter + "</b></lesson>\n");
	}
} else if(quizType == 2) {
	document.write("<span class='regText'><b>Lesson " + chapter + "-" + lesson + "</b></span>\n");
} else {
	document.write("<span class='regText'><b>Chapter " + chapter + "</b></lesson>\n");
}

document.write("<br>\n");
document.write("<img src='../images/spacer.gif' alt='' width='1' height='8' border='0'><span class='regText'><b>" + subtitle +  "</b></span>\n");
}


//-->
