function goquiz(){

var path=document.location.pathname;



var pattern = /(chap)(\d+)/;

var chapter = "";

var result = pattern.exec(path);



var number;

var title = new Array(27);

title[0] = "00000";

title[1] = "A+Geographic+Perspective+on+History";

title[2] = "Encounters+and+Colonies";

title[3] = "The+American+Revolution";

title[4] = "A+New+Nation";

title[5] = "The+Expanding+Nation";

title[6] = "Civil+War+and+Reconstruction";

title[7] = "New+Frontiers";

title[8] = "Progressive+Reforms";

title[9] = "Progressivism+Takes+Hold";

title[10] = "Expansion+and+World+War+I";

title[11] = "Getting+on+With+Business";

title[12] = "A+Prospering+Society";

title[13] = "The+Great+Depression";

title[14] = "The+New+Deal";

title[15] = "World+War+II";

title[16] = "The+Home+Front";

title[17] = "The+Uneasy+Peace";

title[18] = "The+Postwar+Era";

title[19] = "Cold+War+Politics";

title[20] = "The+Civil+Rights+Struggle";

title[21] = "The+Kennedy+and+Johnson+Years";

title[22] = "Voices+of+Protest";

title[23] = "The+Vietnam+War";

title[24] = "From+Nixon+to+Carter";

title[25] = "The+Reagan+and+Bush+Years";

title[26] = "A+Changing+Nation+in+a+Changing+World";









chapter = result[2]; 





number = parseInt(chapter);	

		

var url1 = "../quiz.shtml?BOOK=010&CHAPTER=" + chapter + "&TITLE=" + title[chapter];



location.href = url1;



}



