chapter=4;  // global
section="A"; 
problem=1;  

// Print question number
//
function pqnInit() {
    problem=1;
}

function numberIt() {
	pqn(section,"A");
	
}
function pqn(section,problemType) {
    document.write("<b><font color=\"#ff0000\" face=\"verdana\" face=\"arial\" size=\"1\">"  +
        problem + "</font></b>"+
		"<font color=\"#ff0000\" face=\"verdana\" face=\"arial\" size=\"1\">" +"."+ "</font>");
	
    problem++;
}

function setAuto(problemType) {
    pqn(section,problemType);
}
function setChapterNo(chapterNumber) {
    chapter=chapterNumber;
}

function setSectionNo(sectionNumber) {
    section=sectionNumber;
}

function setProblemNo(problemNumber) {
    problem=problemNumber;
}


