﻿//this file contains all the web page references for the researchpractices section.
//ensure any web page to be included in the CR Report PDF Builder (in the researchpractices section) appears in this list

//The arrays are ordered by chapter. To create a new chapter, copy a whole array and paste it in order of chapter
//If you researchpracticeseate a new chapter, a new checkbox needs to be researchpracticeseated in the CR Report PDF builder form.
//You will also need to hook up the checkbox value to the chapter array by adding a line into the initresearchpractices() function as outlined at the end of this file.

var researchpracticesChapter0 =
[
'http://10.5.22.33:31102/responsibility/research-practices/index.htm',
];

var researchpracticesChapter1 =
[
'http://10.5.22.33:31102/responsibility/research-practices/emerging-technologies.htm',
'http://10.5.22.33:31102/responsibility/research-practices/cloning-technology-and-stem-cell-research.htm',
'http://10.5.22.33:31102/responsibility/research-practices/genetic-research.htm',
];

var researchpracticesChapter2 =
[
'http://10.5.22.33:31102/responsibility/research-practices/animal-research.htm',
'http://10.5.22.33:31102/responsibility/research-practices/animal-research-plans.htm',
];

var researchpracticesChapter3 =
[
'http://10.5.22.33:31102/responsibility/research-practices/human-tissue-research.htm',
];

var researchpracticesChapter4 =
[
'http://10.5.22.33:31102/responsibility/research-practices/maintaining-confidentiality-research-participants.htm',
];

var researchpracticesChapter5 =
[
'http://10.5.22.33:31102/responsibility/research-practices/medical-governance.htm',
];


var researchpracticesChapter6 =
[
'http://10.5.22.33:31102/responsibility/research-practices/clinical-research.htm',
'http://10.5.22.33:31102/responsibility/research-practices/planning-and-approval.htm',
'http://10.5.22.33:31102/responsibility/research-practices/informed-consent.htm',
'http://10.5.22.33:31102/responsibility/research-practices/training-and-auditing.htm',
'http://10.5.22.33:31102/responsibility/research-practices/training-and-auditing-performance.htm',
'http://10.5.22.33:31102/responsibility/research-practices/post-trial-treatment.htm',
'http://10.5.22.33:31102/responsibility/research-practices/clinical-trials-in-the-developing-world.htm',
'http://10.5.22.33:31102/responsibility/research-practices/children-in-clinical-trials.htm',
];

var researchpracticesChapter7 =
[
'http://10.5.22.33:31102/responsibility/research-practices/public-disclosure-of-clinical-research.htm',
'http://10.5.22.33:31102/responsibility/research-practices/public-disclosure-of-clinical-research-performance-plans.htm',
];

var researchpracticesChapter8 =
[
'http://10.5.22.33:31102/responsibility/research-practices/Patient-needs-and-RnD.htm',
];

var researchpracticesChapter9 =
[
'http://10.5.22.33:31102/responsibility/research-practices/patient-safety.htm',
'http://10.5.22.33:31102/responsibility/research-practices/patient-safety-governance-framework.htm',
'http://10.5.22.33:31102/responsibility/research-practices/collecting-and-reporting-safety-data.htm',
'http://10.5.22.33:31102/responsibility/research-practices/responding-to-questions-about-avandia.htm',
'http://10.5.22.33:31102/responsibility/research-practices/questions-safety-beta-2-agonists.htm',
'http://10.5.22.33:31102/responsibility/research-practices/patient-safety-performance.htm',
];

var researchpracticesChapter10 =
[
'http://10.5.22.33:31102/responsibility/research-practices/working-with-healthcare-professionals.htm',
];


var researchpracticesChapter11 =
[
'http://10.5.22.33:31102/responsibility/research-practices/research-practices-case-studies.htm',
];

var researchpracticesChapter12 =
[
'http://10.5.22.33:31102/responsibility/research-practices/research-practices-Q&A.htm',
];
//function initresearchpractices:  loads the contents of the above arrays into the corresponding checkboxes in the CR Report PDF builder form.
//INSTUCTIONS:              Each chapter above needs a corresponding line in this function to associate the PDF files with the correct checkbox.
//e.g:                      document.getElementById('researchpracticesChapter1').value = researchpracticesChapter1.join();
//                          - sets the checkbox value with ID 'researchpracticesChapter1' to the contents of the above 'researchpracticesChapter1' array.

function initResearchPractices() {
    document.getElementById('researchpracticesChapter0').value = researchpracticesChapter0.join();
	document.getElementById('researchpracticesChapter1').value = researchpracticesChapter1.join();
    document.getElementById('researchpracticesChapter2').value = researchpracticesChapter2.join();
    document.getElementById('researchpracticesChapter3').value = researchpracticesChapter3.join();
    document.getElementById('researchpracticesChapter4').value = researchpracticesChapter4.join();
    document.getElementById('researchpracticesChapter5').value = researchpracticesChapter5.join();
    document.getElementById('researchpracticesChapter6').value = researchpracticesChapter6.join();
    document.getElementById('researchpracticesChapter7').value = researchpracticesChapter7.join();
    document.getElementById('researchpracticesChapter8').value = researchpracticesChapter8.join();
    document.getElementById('researchpracticesChapter9').value = researchpracticesChapter9.join();
    document.getElementById('researchpracticesChapter10').value = researchpracticesChapter10.join();
    document.getElementById('researchpracticesChapter11').value = researchpracticesChapter11.join();
    document.getElementById('researchpracticesChapter12').value = researchpracticesChapter12.join();
}
