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

var letters = new Array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');

if (lesson == 0) {
	document.write("<br><span class='head1'>Chapter Readiness Quiz</span><br>\n");
} else {

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 Quiz</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) {
	if(lesson>100){
		les = parseInt(lesson/100);
		sles = lesson - (les * 100);
		document.write("<span class='regText'><b>Lesson " + chapter + "-" + les + letters[sles - 1] + "</b></span>\n");
	} else {
		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");
}


//-->
