//*********************************************************
//                   
//*********************************************************/

// number of chapters & pages
var num_chapters = 5;
var chapter_details_array = [ // pages per chapter, chapter name
					[1, "Introduction"],                                             // introduction
				  	[5, "Establishing an SPS notification authority and enquiry point"],                              // chapter 1 
				  	[7, "Operating the SPS notification authority"], // chapter 2
				  	[3, "Operating the SPS enquiry point"],                    // chapter 3
				  	[1, "Notification of Equivalence"],                            // chapter 4
				  	[3, "Publication of regulations"]          // chapter 5
				    ];

// arrays of questions for the quiz 
// each array item consists of the following fields: 
//   - the chapter to which the question belongs, 
//   - the question, 
//   - the number of the correct answer (starting from 1), 
//   - the page containing the explanation of the answer to the question, 
//   - the answers in order
var question_array = new Array();
question_array[1] = [1, "Which of the following is not an obligation of the National Notification Authority (NNA)?", 2, "c1s1p1_e.htm", "notifying draft regulations", "providing answers to all reasonable questions from Members", "providing copies of proposed regulations", "receiving and discussing comments on proposed regulations"];
question_array[2] = [1, "Which of the following is not an obligation of the Enquiry Point (EP)?", 1, "c1s2p1_e.htm", "notifying draft regulations", "providing answers to all reasonable questions from Members", "provide documents regarding all existing and proposed domestic SPS regulations", "provide information on risk assessment procedures", "provide information on membership in international and regional organizations and agreements"];
question_array[3] = [2, "A new SPS regulation (not an emergency regulation), which is not based on an international standard, and which will have an effect on trade should be notified", 2, "c2s2p2_e.htm", "as soon as it enters into force", "as soon as a complete draft is available, when changes can still be made", "as soon as the final draft is available, when no further changes need to be made", "as soon as it is adopted"];
question_array[4] = [2, "Which of the following must be notified according to the SPS Agreement?", 1, "c2s2p1_e.htm", "revised maximum residue levels for certain pesticides in food", "regulation from 1992 regarding food additives", "regulation which adopts a Codex standard"];
question_array[5] = [2, "How much time for comments should be provided on a notification?", 1, "c2s2p2_e.htm", "at least 60 days for regular notifications, none for emergency notifications", "at least one year for regular notifications, 6 months for emergency notifications", "at least 60 days for both regular and emergency notifications", "at least one year for regular notifications, none for emergency notifications", "at least 30 days for regular notifications, none for emergency notifications"];
question_array[6] = [2, "Which of the following is correct?", 5, "c2s3p1_e.htm", "when a translation of a relevant document exists, this should be indicated on the notification", "where documents are not available in a WTO working language, developed country Members shall, upon request, supply a translation of the document or of a summary", "if a translation of a document or summary exists in the language of the requesting Member, it should automatically be sent with the original of the document requested", "Members are encouraged to share unofficial translations of documents", "all of the above"];
question_array[7] = [2, "Members have to notify", 4, "c2s2p1_e.htm", "trade-restricting regulations", "regulations that have no effect on trade", "trade-facilitating regulations", "a) and c) (correct answer)"];
question_array[8] = [2, "The description of the content of a draft regulation on a notification should", 2, "c2s2p3_e.htm", "be as short and succinct as possible", "be as complete and accurate as possible", "reproduce the entire text of the draft regulation"];
question_array[9] = [2, "Notifications are", 4, "c2s2p3_e.htm", "available on the WTO website", "sent out by electronic mail to those who are interested", "provided on paper to Members&rsquo; missions to the WTO", "all of the above"];
question_array[10] = [2, "When receiving comments on a notified SPS regulation, the agency responsible has to", 5, "c2s3p1_e.htm", "acknowledge receipt of comments", "discuss comments if requested to, respond to questions raised, and provide additional information requested", "explain how comments are (or are not) being taken into account", "send a copy of the final SPS regulation when it is adopted", "all of the above"];
question_array[11] = [5, "SPS regulations have to be published", 4, "c5s1p1_e.htm", "promptly after they have been adopted", "allowing reasonable time before entry into force (except in emergency situations)", "if they have not been notified", "a) and b)"];


