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] = "People+and+Government";
title[2] = "Origins+of+American+Government";
title[3] = "The+Constitution";
title[4] = "The+Federal+System";
title[5] = "The+Organization+of+Congress";
title[6] = "Development+of+Congressional+Powers";
title[7] = "Congress+at+Work";
title[8] = "The+Presidency";
title[9] = "Presidential+Leadership";
title[10] = "The+Federal+Bureaucracy";
title[11] = "The+Federal+Court+System";
title[12] = "Supreme+Court+Decision+Making";
title[13] = "Constitutional+Freedoms";
title[14] = "Citizenship+and+Equal+Justice";
title[15] = "Law+in+America";
title[16] = "Political+Parties";
title[17] = "Elections+and+Voting";
title[18] = "Interest+Groups+and+Public+Opinion";
title[19] = "The+Mass+Media";
title[20] = "Taxing+and+Spending";
title[21] = "Social+and+Domestic+Policy";
title[22] = "Foreign+Policy+and+Defense";
title[23] = "Structure+and+Function+of+State+Government";
title[24] = "Structure+and+Function+of+State+Government";
title[25] = "Political+Systems+in+Today's+World";
title[26] = "Development+of+Economic+Systems";




chapter = result[2]; 


number = parseInt(chapter);	
		
var url1 = "http://www.glencoe.com/sec/socialstudies/govciv/usgov2002/quiz.shtml?BOOK=009&CHAPTER=" + chapter + "&TITLE=" + title[chapter];

location.href = url1;

}

