diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
index 0302ba2..057bfe2 100644
--- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
+++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
@@ -48,9 +48,9 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
$scope.getLabExerciseModules = function () {
//debugger;
$scope.LabExerciseModules1 = null;
- var commondataJsonPath = '~/../content/data/json/le/LabExercise.json';
+ var labExerciseModulePath = '~/../content/data/json/le/labexercise.json';
- DataService.getAnotherJson(commondataJsonPath).then(
+ DataService.getAnotherJson(labExerciseModulePath).then(
function (result) {
//debugger;
//alert(JSON.stringify(result));
@@ -68,7 +68,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
if (title != null) {
$scope.LabExerciseQuiz = title;
$scope.LabExerciseName = title.Topic;
- $location.url("/lab-exercises-detail?topic=" + (title.Slug || ""));
+ $location.url("/lab-exercises-detail?labexercise=" + (title.Slug || ""));
}
}
@@ -76,18 +76,18 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
$scope.GetQuizByTopic = function () {
var keywords = $location.search();
- $scope.LabExerciseName = keywords.topic;
+ $scope.LabExerciseName = keywords.labexercise;
$scope.LabExerciseModules = null;
$scope.LabExerciseBoxes = null;
- var commondataJsonPath = '~/../content/data/json/le/' + $scope.LabExerciseName + '.json';
+ var labExerciseModulePath = '~/../content/data/json/le/' + $scope.LabExerciseName + '.json';
- DataService.getAnotherJson(commondataJsonPath).then(
+ DataService.getAnotherJson(labExerciseModulePath).then(
function (result) {
//debugger;
// alert(JSON.stringify(result.LabExercise));
$.each(result.LabExercise, function (index, value) {
$scope.LabExerciseName = result.LabExercise[index].Topic;
- if (result.LabExercise[index].Slug == keywords.topic) {
+ if (result.LabExercise[index].Slug == keywords.labexercise) {
$scope.TotalNumberofQuiz = result.LabExercise[index].NumberofQuestions;
$.each(result.LabExercise[index].Questions, function (index1, value1) {
@@ -105,7 +105,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
$scope.LabExerciseModules = result.LabExercise[index].Questions[index1];
$scope.activityTitle = result.LabExercise[index].Questions[index1].activityTitle;
$scope.Title = result.LabExercise[index].Questions[index1].Title;
- $scope.Imagepath = keywords.topic + "/" + result.LabExercise[index].Questions[index1].ImagePath;
+ $scope.Imagepath = keywords.labexercise + "/" + result.LabExercise[index].Questions[index1].ImagePath;
}
$scope.ShowHideDiv(result.LabExercise[index].Questions[index1].Options[0].textalign);
}
@@ -166,12 +166,12 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
if (id == "divoptions" || id == "divleft" || id == "divright") {
var item = $('#' + $scope.dragableId).html();
var rindex = $scope.DraggedList.indexOf(item);
- var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json';
- DataService.getAnotherJson(commondataJsonPath).then(
+ var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json';
+ DataService.getAnotherJson(labExerciseModulePath).then(
function (result) {
$.each(result.LabExercise, function (index, value) {
- if (result.LabExercise[index].Slug == keywords.topic) {
+ if (result.LabExercise[index].Slug == keywords.labexercise) {
$.each(result.LabExercise[index].Questions, function (index1, value1) {
if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) {
var Options = result.LabExercise[index].Questions[index1].Options;
@@ -202,11 +202,11 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
}
else {
- var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json';
- DataService.getAnotherJson(commondataJsonPath).then(
+ var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json';
+ DataService.getAnotherJson(labExerciseModulePath).then(
function (result) {
$.each(result.LabExercise, function (index, value) {
- if (result.LabExercise[index].Slug == keywords.topic) {
+ if (result.LabExercise[index].Slug == keywords.labexercise) {
$.each(result.LabExercise[index].Questions, function (index1, value1) {
if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) {
var Options = result.LabExercise[index].Questions[index1].OptionBox;
@@ -260,12 +260,12 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
$scope.ReviewAttempt = function () {
var keywords = $location.search();
- var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json';
- DataService.getAnotherJson(commondataJsonPath).then(
+ var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json';
+ DataService.getAnotherJson(labExerciseModulePath).then(
function (result) {
//alert(result)
$.each(result.LabExercise, function (index, value) {
- if (result.LabExercise[index].Slug == keywords.topic) {
+ if (result.LabExercise[index].Slug == keywords.labexercise) {
$.each(result.LabExercise[index].Questions, function (index1, value1) {
if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) {
var correctResponse = result.LabExercise[index].Questions[index1].correctResponse;
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/CS.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/CS.json
index 2dd5b0d..49495e5 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/CS.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/CS.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Cardivascular System",
- "Slug": "CS",
+ "Slug": "cs",
"TopicImagePath":"lab-exercises-1.jpg",
"NumberofQuestions": "18",
"Questions": [
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/DS.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/DS.json
index 3458ccd..6722f87 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/DS.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/DS.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Digestive System",
- "Slug": "DS",
+ "Slug": "ds",
"TopicImagePath":"lab-exercises-2.jpg",
"NumberofQuestions": "15",
"Questions": [
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/ES.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/ES.json
index 7637cd3..f8a6b29 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/ES.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/ES.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Endocrine System",
- "Slug": "ES",
+ "Slug": "es",
"TopicImagePath":"lab-exercises-3.jpg",
"NumberofQuestions": "12",
"Questions": [
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LS.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LS.json
index 8581c86..de060fb 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LS.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LS.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Lymphatic System",
- "Slug": "LS",
+ "Slug": "ls",
"TopicImagePath":"lab-exercises-4.jpg",
"NumberofQuestions": "12",
"Questions": [
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LabExercise.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LabExercise.json
index d557c57..df95b6d 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LabExercise.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LabExercise.json
@@ -1,57 +1,57 @@
{
"LabExercise": [{
"Topic": "Cardivascular System",
- "Slug": "CS",
+ "Slug": "cs",
"TopicImagePath": "lab-exercises-1.jpg",
"NumberofQuestions": "18"
},{
"Topic": "Digestive System",
- "Slug": "DS",
+ "Slug": "ds",
"TopicImagePath": "lab-exercises-2.jpg",
"NumberofQuestions": "12"
},{
"Topic": "Endocrine System",
- "Slug": "ES",
+ "Slug": "es",
"TopicImagePath": "lab-exercises-3.jpg",
"NumberofQuestions": "12"
},{
"Topic": "Lymphatic System",
- "Slug": "LS",
+ "Slug": "ls",
"TopicImagePath": "lab-exercises-4.jpg",
"NumberofQuestions": "15"
},{
"Topic": "Muscular System",
- "Slug": "MS",
+ "Slug": "ms",
"TopicImagePath": "lab-exercises-5.jpg",
"NumberofQuestions": "13"
},{
"Topic": "Nervous System",
- "Slug": "NS",
+ "Slug": "ns",
"TopicImagePath": "lab-exercises-6.jpg",
"NumberofQuestions": "15"
},{
"Topic": "Reproductive System",
- "Slug": "RP",
+ "Slug": "rp",
"TopicImagePath": "lab-exercises-7.jpg",
"NumberofQuestions": "15"
},{
"Topic": "Respiratory System",
- "Slug": "RS",
+ "Slug": "rs",
"TopicImagePath": "lab-exercises-8.jpg",
- "NumberofQuestions": "15"
+ "NumberofQuestions": "13"
},{
"Topic": "Skeletal System",
- "Slug": "SK",
+ "Slug": "sk",
"TopicImagePath": "lab-exercises-9.jpg",
"NumberofQuestions": "15"
},{
"Topic": "Special System",
- "Slug": "SS",
+ "Slug": "ss",
"TopicImagePath": "lab-exercises-10.jpg",
"NumberofQuestions": "15"
},{
"Topic": "Urinary System",
- "Slug": "US",
+ "Slug": "us",
"TopicImagePath": "lab-exercises-11.jpg",
"NumberofQuestions": "15"
}]
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/MS.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/MS.json
index 897ed68..d1edb60 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/MS.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/MS.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Muscular System",
- "Slug": "MS",
+ "Slug": "ms",
"TopicImagePath": "lab-exercises-5.jpg",
"NumberofQuestions": "13",
"Questions": [
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/NS.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/NS.json
index d9c8655..4cbdeff 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/NS.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/NS.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Nervous System",
- "Slug": "NS",
+ "Slug": "ns",
"TopicImagePath": "lab-exercises-6.jpg",
"NumberofQuestions": "16",
"Questions": [
@@ -13,9 +13,9 @@
"OptionBox": [{"BoxName": "T1","topcoord":"108","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"181","leftcoord":"5","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"267","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"266","leftcoord":"616","Answervalue":"","QuizText":""}
,{"BoxName": "T5","topcoord":"328","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar nerve"},{"OptionNumber": "B","OptionTitle": "Median nerve"},
- {"OptionNumber": "C","OptionTitle": "Radial nerve"},{"OptionNumber": "D","OptionTitle": "Musculocutaneous nerve"}
- ,{"OptionNumber": "E","OptionTitle": "Axillary nerve"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar nerve","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Median nerve","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Radial nerve","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Musculocutaneous nerve","textalign":"left"}
+ ,{"OptionNumber": "E","OptionTitle": "Axillary nerve","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "E"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "A"},{"OptionBox": "T5","Answer": "B"}]
},{
"Number": "2",
@@ -25,9 +25,9 @@
"OptionBox": [{"BoxName": "T1","topcoord":"201","leftcoord":"9","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"317","leftcoord":"9","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"65","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"230","leftcoord":"619","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"371","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"422","leftcoord":"619","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Frontal lobe"},{"OptionNumber": "B","OptionTitle": "Pituitary gland"},
- {"OptionNumber": "C","OptionTitle": "Mamillary body"},{"OptionNumber": "D","OptionTitle": "Cerebellum"},
- {"OptionNumber": "E","OptionTitle": "Occipital lobe"},{"OptionNumber": "F","OptionTitle": "Temporal lobe"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Frontal lobe","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Pituitary gland","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Mamillary body","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Cerebellum","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Occipital lobe","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Temporal lobe","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "C"},
{"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"}]
},{
@@ -38,9 +38,9 @@
"OptionBox": [{"BoxName": "T1","topcoord":"6","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"166","leftcoord":"4","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"383","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"196","leftcoord":"575","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"235","leftcoord":"575","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"346","leftcoord":"575","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Conus medullaris"},{"OptionNumber": "B","OptionTitle": "L5 spinal nerve"},
- {"OptionNumber": "C","OptionTitle": "Posterior superior iliac spine"},{"OptionNumber": "D","OptionTitle": "Filum terminale"},
- {"OptionNumber": "E","OptionTitle": "Coccyx"},{"OptionNumber": "F","OptionTitle": "Cauda equina"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Conus medullaris","textalign":"left"},{"OptionNumber": "B","OptionTitle": "L5 spinal nerve","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Posterior superior iliac spine","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Filum terminale","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Coccyx","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Cauda equina","textalign":"left"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "B"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"}]
},{
@@ -50,8 +50,8 @@
"ImagePath":"NS-04.JPG",
"OptionBox": [{"BoxName": "T1","topcoord":"91","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"177","leftcoord":"3","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"86","leftcoord":"879","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"247","leftcoord":"879","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Ophthalmic division"},{"OptionNumber": "B","OptionTitle": "Maxillary division"},
- {"OptionNumber": "C","OptionTitle": "Mandibular division"},{"OptionNumber": "D","OptionTitle": "Trigeminal nerve"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Ophthalmic division","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Maxillary division","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Mandibular division","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Trigeminal nerve","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}]
},{
"Number": "5",
@@ -62,10 +62,10 @@
{"BoxName": "T3","topcoord":"349","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"120","leftcoord":"617","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"156","leftcoord":"617","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"284","leftcoord":"617","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"317","leftcoord":"617","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"350","leftcoord":"617","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Temporal branch"},{"OptionNumber": "B","OptionTitle": "Zygomatic branch"},
- {"OptionNumber": "C","OptionTitle": "Buccal branch"},{"OptionNumber": "D","OptionTitle": "Mandibular branch"},
- {"OptionNumber": "E","OptionTitle": "Masseter muscle"},{"OptionNumber": "F","OptionTitle": "Cervical branch"},
- {"OptionNumber": "G","OptionTitle": "Sternocleidomastoid muscle"},{"OptionNumber": "H","OptionTitle": "Parotid gland"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Temporal branch","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Zygomatic branch","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Buccal branch","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Mandibular branch","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Masseter muscle","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Cervical branch","textalign":"right"},
+ {"OptionNumber": "G","OptionTitle": "Sternocleidomastoid muscle","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Parotid gland","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "B"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}]
},{
@@ -77,10 +77,10 @@
{"BoxName": "T3","topcoord":"261","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"330","leftcoord":"5","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"58","leftcoord":"801","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"116","leftcoord":"801","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"185","leftcoord":"801","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"299","leftcoord":"801","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Parietal lobe"},{"OptionNumber": "B","OptionTitle": "Occipital lobe"},
- {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"},
- {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"},
- {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Parietal lobe","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Occipital lobe","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Cerebellum","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Spinal cord","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Pons","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Temporal lobe","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Frontal lobe","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
{"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
},{
@@ -92,10 +92,10 @@
{"BoxName": "T3","topcoord":"317","leftcoord":"9","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"67","leftcoord":"619","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"172","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"255","leftcoord":"619","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"339","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"399","leftcoord":"619","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb"},{"OptionNumber": "B","OptionTitle": "Optic nerve"},
- {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"},
- {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"},
- {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Optic nerve","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Optic chiasma","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Pituitary gland","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Pons","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Medulla oblongata","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Spinal cord","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Trigeminal nerve","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"},
{"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "G"}]
},{
@@ -107,10 +107,10 @@
{"BoxName": "T3","topcoord":"357","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"52","leftcoord":"842","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"99","leftcoord":"842","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"187","leftcoord":"842","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"247","leftcoord":"842","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Psoas major muscle"},{"OptionNumber": "B","OptionTitle": "Iliacus muscle"},
- {"OptionNumber": "C","OptionTitle": "Inguinal ligament"},{"OptionNumber": "D","OptionTitle": "Sacral plexus"},
- {"OptionNumber": "E","OptionTitle": "Pudendal nerve"},{"OptionNumber": "F","OptionTitle": "Sciatic nerve"},
- {"OptionNumber": "G","OptionTitle": "Femoral nerve"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Psoas major muscle","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Iliacus muscle","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Inguinal ligament","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Sacral plexus","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Pudendal nerve","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Sciatic nerve","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Femoral nerve","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "G"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"},
{"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"}]
},{
@@ -122,10 +122,10 @@
{"BoxName": "T3","topcoord":"171","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"11","leftcoord":"517","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"63","leftcoord":"517","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"267","leftcoord":"517","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"427","leftcoord":"517","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Body of L1 vertebra"},{"OptionNumber": "B","OptionTitle": "Conus medullaris"},
- {"OptionNumber": "C","OptionTitle": "Body of L2 vertebra"},{"OptionNumber": "D","OptionTitle": "Filum terminale Internal terminal filum"},
- {"OptionNumber": "E","OptionTitle": "Body of S1 vertebra"},{"OptionNumber": "F","OptionTitle": "Coccyx"},
- {"OptionNumber": "G","OptionTitle": "Cauda equina"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Body of L1 vertebra","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Conus medullaris","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Body of L2 vertebra","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Filum terminale Internal terminal filum","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Body of S1 vertebra","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Coccyx","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Cauda equina","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "A"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "F"}]
},{
@@ -137,12 +137,12 @@
{"BoxName": "T3","topcoord":"142","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"247","leftcoord":"6","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"23","leftcoord":"783","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"77","leftcoord":"783","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"149","leftcoord":"783","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"244","leftcoord":"783","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb"},{"OptionNumber": "B","OptionTitle": "Optic nerve"},
- {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"},
- {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"},
- {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}],
- "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"},
- {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "G"}]
+ "Options": [{"OptionNumber": "A","OptionTitle": "Ventral nerve root","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Dorsal nerve root","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Dorsal root ganglion","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Spinal nerve","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Arachnoid mater","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Dura mater","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Pia mater","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "White matter","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "F"},
+ {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "A"},{"OptionBox": "T8","Answer": "E"}]
},{
"Number": "11",
"Title": "Drag the labels to the correct location on the image.",
@@ -152,10 +152,10 @@
{"BoxName": "T3","topcoord":"270","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"340","leftcoord":"6","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"34","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"110","leftcoord":"616","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"210","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"284","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Superior cervical ganglion"},{"OptionNumber": "B","OptionTitle": "Middle cervical ganglion"},
- {"OptionNumber": "C","OptionTitle": "Thoracic duct"},{"OptionNumber": "D","OptionTitle": "Thoracic sympathetic ganglion"},
- {"OptionNumber": "E","OptionTitle": "White ramus communicans"},{"OptionNumber": "F","OptionTitle": "Gray ramus communicans"},
- {"OptionNumber": "G","OptionTitle": "Brachial plexus"},{"OptionNumber": "H","OptionTitle": "Phrenic nerve"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Superior cervical ganglion","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Middle cervical ganglion","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Thoracic duct","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thoracic sympathetic ganglion","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "White ramus communicans","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Gray ramus communicans","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Brachial plexus","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Phrenic nerve","textalign":"left"}],
"correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
{"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
},{
@@ -167,10 +167,10 @@
{"BoxName": "T3","topcoord":"223","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"260","leftcoord":"4","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"50","leftcoord":"821","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"126","leftcoord":"821","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"181","leftcoord":"821","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"256","leftcoord":"821","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Intercostal nerve"},{"OptionNumber": "B","OptionTitle": "Spinal cord"},
- {"OptionNumber": "C","OptionTitle": "Dorsal nerve root"},{"OptionNumber": "D","OptionTitle": "Ventral nerve root"},
- {"OptionNumber": "E","OptionTitle": "Dorsal root ganglion"},{"OptionNumber": "F","OptionTitle": "Dorsal ramus"},
- {"OptionNumber": "G","OptionTitle": "Ventral ramus"},{"OptionNumber": "H","OptionTitle": "Sympathetic ganglion"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Intercostal nerve","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Spinal cord","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Dorsal nerve root","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Ventral nerve root","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Dorsal root ganglion","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Dorsal ramus","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Ventral ramus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Sympathetic ganglion","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "D"},{"OptionBox": "T4","Answer": "F"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "G"},{"OptionBox": "T8","Answer": "H"}]
},{
@@ -180,8 +180,8 @@
"ImagePath":"NS-13.JPG",
"OptionBox": [{"BoxName": "T1","topcoord":"32","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"234","leftcoord":"5","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"38","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"181","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Cerebellum"},{"OptionNumber": "B","OptionTitle": "Precentral gyrus"},
- {"OptionNumber": "C","OptionTitle": "Central sulcus"},{"OptionNumber": "D","OptionTitle": "Postcentral gyrus"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Cerebellum","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Precentral gyrus","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Central sulcus","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Postcentral gyrus","textalign":"left"}],
"correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "B"}]
},{
"Number": "14",
@@ -192,10 +192,10 @@
{"BoxName": "T3","topcoord":"215","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"288","leftcoord":"4","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"358","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"47","leftcoord":"616","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"130","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"222","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Fornix"},{"OptionNumber": "B","OptionTitle": "Septum pellucidum"},
- {"OptionNumber": "C","OptionTitle": "Corpus callosum"},{"OptionNumber": "D","OptionTitle": "Superior sagittal sinus"},
- {"OptionNumber": "E","OptionTitle": "Choroid plexus"},{"OptionNumber": "F","OptionTitle": "Third ventricle"},
- {"OptionNumber": "G","OptionTitle": "Cerebral aqueduct"},{"OptionNumber": "H","OptionTitle": "Fourth ventricle"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Fornix","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Septum pellucidum","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Corpus callosum","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Superior sagittal sinus","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Choroid plexus","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Third ventricle","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Cerebral aqueduct","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Fourth ventricle","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "F"},
{"OptionBox": "T5","Answer": "G"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "H"}]
},{
@@ -207,10 +207,10 @@
{"BoxName": "T3","topcoord":"246","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"301","leftcoord":"6","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"358","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"52","leftcoord":"616","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"144","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"249","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Neurohypophysis"},{"OptionNumber": "B","OptionTitle": "Infundibulum"},
- {"OptionNumber": "C","OptionTitle": "Optic chiasma"},{"OptionNumber": "D","OptionTitle": "Hypothalamus"},
- {"OptionNumber": "E","OptionTitle": "Mamillary body"},{"OptionNumber": "F","OptionTitle": "Thalamus"},
- {"OptionNumber": "G","OptionTitle": "Interthalamic adhesion"},{"OptionNumber": "H","OptionTitle": "Pineal body"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Neurohypophysis","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Infundibulum","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Optic chiasma","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Hypothalamus","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Mamillary body","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Thalamus","textalign":"right"},
+ {"OptionNumber": "G","OptionTitle": "Interthalamic adhesion","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Pineal body","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "E"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "B"},
{"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "F"},{"OptionBox": "T7","Answer": "G"},{"OptionBox": "T8","Answer": "H"}]
},{
@@ -222,10 +222,10 @@
{"BoxName": "T3","topcoord":"295","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"356","leftcoord":"4","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"94","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"168","leftcoord":"616","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"214","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"294","leftcoord":"616","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Frontal sinus"},{"OptionNumber": "B","OptionTitle": "Sphenoidal sinus"},
- {"OptionNumber": "C","OptionTitle": "Superior colliculus"},{"OptionNumber": "D","OptionTitle": "Inferior colliculus"},
- {"OptionNumber": "E","OptionTitle": "Pons"},{"OptionNumber": "F","OptionTitle": "Cerebellum"},
- {"OptionNumber": "G","OptionTitle": "Arbor vitae"},{"OptionNumber": "H","OptionTitle": "Medulla oblongata"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Frontal sinus","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Sphenoidal sinus","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Superior colliculus","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Inferior colliculus","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Pons","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Cerebellum","textalign":"right"},
+ {"OptionNumber": "G","OptionTitle": "Arbor vitae","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Medulla oblongata","textalign":"left"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "H"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "F"},{"OptionBox": "T8","Answer": "G"}]
}]
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/RP.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/RP.json
index 21b6705..a628e4d 100644
--- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/RP.json
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/RP.json
@@ -1,7 +1,7 @@
{"LabExercise" : [
{
"Topic": "Reproductive System",
- "Slug": "RP",
+ "Slug": "rp",
"TopicImagePath": "lab-exercises-7.jpg",
"NumberofQuestions": "12",
"Questions": [
@@ -13,9 +13,9 @@
"OptionBox": [{"BoxName": "T1","topcoord":"168","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"219","leftcoord":"4","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"22","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"202","leftcoord":"614","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"290","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"343","leftcoord":"614","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Ovary"},{"OptionNumber": "B","OptionTitle": "Round ligament of uterus"},
- {"OptionNumber": "C","OptionTitle": "Ureter"},{"OptionNumber": "D","OptionTitle": "Uterus"},
- {"OptionNumber": "E","OptionTitle": "Urinary bladder"},{"OptionNumber": "F","OptionTitle": "Urethra"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Ovary","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Round ligament of uterus","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Ureter","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Uterus","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Urinary bladder","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Urethra","textalign":"right"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
{"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}]
},{
@@ -27,10 +27,10 @@
{"BoxName": "T3","topcoord":"212","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"274","leftcoord":"2","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"91","leftcoord":"855","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"148","leftcoord":"855","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"184","leftcoord":"855","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"306","leftcoord":"855","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis"},
- {"OptionNumber": "C","OptionTitle": "Fundus of uterus"},{"OptionNumber": "D","OptionTitle": "Urinary bladder"},
- {"OptionNumber": "E","OptionTitle": "Vagina"},{"OptionNumber": "F","OptionTitle": "Labium minus"},
- {"OptionNumber": "G","OptionTitle": "Urethra"},{"OptionNumber": "H","OptionTitle": "Clitoris"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Fundus of uterus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Urinary bladder","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Vagina","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Labium minus","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Clitoris","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "H"},
{"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "G"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}]
},{
@@ -42,10 +42,10 @@
{"BoxName": "T3","topcoord":"188","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"233","leftcoord":"5","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"58","leftcoord":"944","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"104","leftcoord":"944","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"219","leftcoord":"944","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"300","leftcoord":"944","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis"},
- {"OptionNumber": "C","OptionTitle": "Fundus of uterus"},{"OptionNumber": "D","OptionTitle": "Urinary bladder"},
- {"OptionNumber": "E","OptionTitle": "Vagina"},{"OptionNumber": "F","OptionTitle": "Labium minus"},
- {"OptionNumber": "G","OptionTitle": "Urethra"},{"OptionNumber": "H","OptionTitle": "Clitoris"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Fundus of uterus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Urinary bladder","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Vagina","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Labium minus","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Clitoris","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "H"},
{"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "G"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}]
},{
@@ -55,8 +55,8 @@
"ImagePath":"RP-04.JPG",
"OptionBox": [{"BoxName": "T1","topcoord":"80","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"187","leftcoord":"2","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"103","leftcoord":"975","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"241","leftcoord":"975","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Pubic symphysis"},{"OptionNumber": "B","OptionTitle": "Epididymis"},
- {"OptionNumber": "C","OptionTitle": "Ductus deferens"},{"OptionNumber": "D","OptionTitle": "Testis"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Pubic symphysis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Epididymis","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Ductus deferens","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Testis","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
},{
"Number": "5",
@@ -67,10 +67,10 @@
{"BoxName": "T3","topcoord":"196","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"276","leftcoord":"7","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"327","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"95","leftcoord":"860","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"140","leftcoord":"860","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"190","leftcoord":"860","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Corpus cavernosum"},{"OptionNumber": "B","OptionTitle": "Corpus spongiosum"},
- {"OptionNumber": "C","OptionTitle": "Ureter"},{"OptionNumber": "D","OptionTitle": "Seminal vesicle"},
- {"OptionNumber": "E","OptionTitle": "Prostate gland"},{"OptionNumber": "F","OptionTitle": "Ductus deferens"},
- {"OptionNumber": "G","OptionTitle": "Epididymis"},{"OptionNumber": "H","OptionTitle": "Testis"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Corpus cavernosum","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Corpus spongiosum","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Ureter","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Seminal vesicle","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Prostate gland","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Ductus deferens","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Epididymis","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Testis","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "F"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "G"},
{"OptionBox": "T5","Answer": "H"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "E"}]
},{
@@ -82,10 +82,10 @@
{"BoxName": "T3","topcoord":"178","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"218","leftcoord":"7","Answervalue":"","QuizText":""},
{"BoxName": "T5","topcoord":"106","leftcoord":"763","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"188","leftcoord":"763","Answervalue":"","QuizText":""},
{"BoxName": "T7","topcoord":"292","leftcoord":"763","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"334","leftcoord":"763","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Ductus deferens"},{"OptionNumber": "B","OptionTitle": "Prostate gland"},
- {"OptionNumber": "C","OptionTitle": "Urinary Bladder"},{"OptionNumber": "D","OptionTitle": "Testis"},
- {"OptionNumber": "E","OptionTitle": "Epididymis"},{"OptionNumber": "F","OptionTitle": "Membranous part of urethra"},
- {"OptionNumber": "G","OptionTitle": "Prostatic part of urethra"},{"OptionNumber": "H","OptionTitle": "Seminal vesicle"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Ductus deferens","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prostate gland","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Urinary Bladder","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Testis","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Epididymis","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Membranous part of urethra","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Prostatic part of urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Seminal vesicle","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "F"},
{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "D"}]
},{
@@ -95,39 +95,75 @@
"ImagePath":"RP-07.JPG",
"OptionBox": [{"BoxName": "T1","topcoord":"159","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"195","leftcoord":"7","Answervalue":"","QuizText":""},
{"BoxName": "T3","topcoord":"97","leftcoord":"820","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"158","leftcoord":"820","Answervalue":"","QuizText":""}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Urethra"},{"OptionNumber": "B","OptionTitle": "Prostate gland"},
- {"OptionNumber": "C","OptionTitle": "Urinary Bladder"},{"OptionNumber": "D","OptionTitle": "Ejaculatory duct"}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prostate gland","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Urinary Bladder","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Ejaculatory duct","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
},{
"Number": "8",
"Title": "Complete the statements below.",
"activityTitle": "Male Reproductive II",
"ImagePath":"",
- "OptionBox": [{"BoxName": "T1","topcoord":"-191","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the surgical removal of the foreskin (prepuce) from the glans penis."},
- {"BoxName": "T2","topcoord":"-156","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a condition of undescended testes that can lead to sterility or cancer if not corrected."},
- {"BoxName": "T3","topcoord":"-122","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the inability to either achieve or maintain an erection."},
- {"BoxName": "T4","topcoord":"-88","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a low sperm count and is one of the main causes of male infertility."},
- {"BoxName": "T5","topcoord":"-54","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for men where the vas deferens is severed and sutured."}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Circumcision"},{"OptionNumber": "B","OptionTitle": "Cryptorchidism"},
- {"OptionNumber": "C","OptionTitle": "Impotence"},{"OptionNumber": "D","OptionTitle": "Oligospermia"},
- {"OptionNumber": "E","OptionTitle": "Vasectomy"}],
+ "OptionBox": [{"BoxName": "T1","topcoord":"-191","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the surgical removal of the foreskin (prepuce) from the glans penis."},
+ {"BoxName": "T2","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a condition of undescended testes that can lead to sterility or cancer if not corrected."},
+ {"BoxName": "T3","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the inability to either achieve or maintain an erection."},
+ {"BoxName": "T4","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a low sperm count and is one of the main causes of male infertility."},
+ {"BoxName": "T5","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for men where the vas deferens is severed and sutured."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Circumcision","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Cryptorchidism","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Impotence","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Oligospermia","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Vasectomy","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},{"OptionBox": "T5","Answer": "E"}]
},{
"Number": "9",
"Title": "Complete the statements below.",
"activityTitle": "Female Reproductive",
"ImagePath":"",
- "OptionBox": [{"BoxName": "T1","topcoord":"-224","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the monthly discharge of the endometrial lining of the uterus."},
- {"BoxName": "T2","topcoord":"-191","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a womanӳ first menstrual period."},
- {"BoxName": "T3","topcoord":"-156","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is an uncomfortable and often painful menstrual period."},
- {"BoxName": "T4","topcoord":"-122","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the cessation of monthly menstrual periods once a woman is beyond her reproductive years."},
- {"BoxName": "T5","topcoord":"-88","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the surgical removal of the uterus."},
- {"BoxName": "T6","topcoord":"-54","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for women where the uterine tubes are severed and sutured."}],
- "Options": [{"OptionNumber": "A","OptionTitle": "Menses"},{"OptionNumber": "B","OptionTitle": "Menarchy"},
- {"OptionNumber": "C","OptionTitle": "Dysmenorrhea"},{"OptionNumber": "D","OptionTitle": "Menopause"},
- {"OptionNumber": "E","OptionTitle": "Hysterectomy"},{"OptionNumber": "F","OptionTitle": "Tubal ligation"}],
+ "OptionBox": [{"BoxName": "T1","topcoord":"-224","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the monthly discharge of the endometrial lining of the uterus."},
+ {"BoxName": "T2","topcoord":"-191","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a womanӳ first menstrual period."},
+ {"BoxName": "T3","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is an uncomfortable and often painful menstrual period."},
+ {"BoxName": "T4","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the cessation of monthly menstrual periods once a woman is beyond her reproductive years."},
+ {"BoxName": "T5","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the surgical removal of the uterus."},
+ {"BoxName": "T6","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for women where the uterine tubes are severed and sutured."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Menses","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Menarchy","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Dysmenorrhea","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Menopause","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Hysterectomy","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Tubal ligation","textalign":"bottom"}],
"correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
{"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}]
+ },{
+ "Number": "10",
+ "Title": "Complete the statements below.",
+ "activityTitle": "Male Reproductive II",
+ "ImagePath":"",
+ "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"219","Answervalue":"","QuizText":"The sac containing the testes is called the ________________________."},
+ {"BoxName": "T2","topcoord":"-122","leftcoord":"387","Answervalue":"","QuizText":"The singular part of the penis surrounding the penile urethra is the ________________________."},
+ {"BoxName": "T3","topcoord":"-88","leftcoord":"536","Answervalue":"","QuizText":"The paired structures of the penis responsible for the rigidity of the erection are called the ________________________."},
+ {"BoxName": "T4","topcoord":"-54","leftcoord":"217","Answervalue":"","QuizText":"The enlarged tip of the penis is called the ________________________."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "scrotum","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "corpus spongiosum","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "corpora cavernosa","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "glans penis","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
+ },{
+ "Number": "11",
+ "Title": "Complete the statements below.",
+ "activityTitle": "Accessory Glands",
+ "ImagePath":"",
+ "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-27","Answervalue":"","QuizText":"The ________________________ are the paired accessory glands that lie on the posterior bladder wall that produce approximately 60% of the volume of semen."},
+ {"BoxName": "T2","topcoord":"-122","leftcoord":"-27","Answervalue":"","QuizText":"The ________________________ gland surrounds the urethra and it contributes approximately one third of the semen volume."},
+ {"BoxName": "T3","topcoord":"-88","leftcoord":"885","Answervalue":"","QuizText":"The small, paired glands at the base of the penis that produce a lubricating, alkaline secretion into the urethra prior to ejaculation are called the ________________________ glands."},
+ {"BoxName": "T4","topcoord":"-54","leftcoord":"514","Answervalue":"","QuizText":"The paired tubes that carry sperm from the epididymus to the ejaculatory duct are the ________________________ ."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "seminal vesicles","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "prostate","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "bulbourethral","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "vas deferens","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
+ },{
+ "Number": "12",
+ "Title": "Complete the statements below.",
+ "activityTitle": "Hormones",
+ "ImagePath":"",
+ "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"735","Answervalue":"","QuizText":"The hormone produced by the testes that causes development of the secondary sexual characteristics in a male is called ________________________ ."},
+ {"BoxName": "T2","topcoord":"-122","leftcoord":"755","Answervalue":"","QuizText":"The hormone produced by the ovaries that causes development of the secondary sexual characteristics in a female is called ________________________ ."},
+ {"BoxName": "T3","topcoord":"-89","leftcoord":"917","Answervalue":"","QuizText":"The hormone secreted by the corpus luteum that sustains the thickness of the endometrium during the secretory phase of the uterine cycle is called ________________________ ."},
+ {"BoxName": "T4","topcoord":"-54","leftcoord":"620","Answervalue":"","QuizText":"The hormone secreted by the sustentacular cells of the testes in response to spermatogenesis is called ________________________ ."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "testosterone","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "estrogen","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "progesterone","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "inhibin","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
}]
}]
}
\ No newline at end of file
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/rs.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/rs.json
new file mode 100644
index 0000000..d40c0ba
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/rs.json
@@ -0,0 +1,181 @@
+{"LabExercise" : [
+ {
+ "Topic": "Respiratory System",
+ "Slug": "rs",
+ "TopicImagePath": "lab-exercises-8.jpg",
+ "NumberofQuestions": "13",
+ "Questions": [
+ {
+ "Number": "1",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Thorax (Lat)",
+ "ImagePath":"RS-01.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"57","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"163","leftcoord":"4","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"55","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"155","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"274","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"392","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Trachea","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Right primary bronchus","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Superior vena cava","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Phrenic nerve","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Pericardial sac","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Diaphragm","textalign":"right"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
+ {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}]
+ },{
+ "Number": "2",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Nasal Cavity (Med)",
+ "ImagePath":"RS-02.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"165","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"203","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"239","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"308","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"30","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"99","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"159","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"246","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Vestibule","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Inferior nasal concha","textalign":"right"},
+ {"OptionNumber": "C","OptionTitle": "Middle nasal concha","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Frontal sinus","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Superior nasal concha","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Sphenoidal sinus","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Pharyngeal tonsil","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Auditory tube","textalign":"right"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
+ {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}]
+ },{
+ "Number": "3",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Pharynx (Med)",
+ "ImagePath":"RS-03.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"241","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"304","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"360","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"113","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"190","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"253","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"306","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"360","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Nasopharynx","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Oropharynx","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Laryngopharynx","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Cricoid cartilage","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Esophagus","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Trachea","textalign":"right"},
+ {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Epiglottis","textalign":"right"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"},
+ {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "E"}]
+ },{
+ "Number": "4",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Larynx (Ant)",
+ "ImagePath":"RS-04.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"83","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"233","leftcoord":"4","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"412","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"72","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"226","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"393","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Hyoid bone","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Laryngeal prominence","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thyroid cartilage","textalign":"left"},
+ {"OptionNumber": "E","OptionTitle": "Cricoid cartilage","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Trachea","textalign":"right"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"},
+ {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"}]
+ },{
+ "Number": "5",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Larynx (Sup)",
+ "ImagePath":"RS-05.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"9","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"60","leftcoord":"4","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"202","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"160","leftcoord":"923","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"248","leftcoord":"923","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Hyoid bone","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Epiglottis","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Vocal ligament","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Cricoid cartilage","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Glottis","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "C"},
+ {"OptionBox": "T5","Answer": "D"}]
+ },{
+ "Number": "6",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Larynx (Post)",
+ "ImagePath":"RS-06.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"92","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"196","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"431","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"12","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"190","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"240","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"325","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"426","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Hyoid bone","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Epiglottis","textalign":"left"},
+ {"OptionNumber": "C","OptionTitle": "Corniculate cartilage","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thyroid cartilage","textalign":"right"},
+ {"OptionNumber": "E","OptionTitle": "Arytenoid cartilage","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Cricoid cartilage","textalign":"left"},
+ {"OptionNumber": "G","OptionTitle": "Tracheal cartilage","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Tracheal membrane","textalign":"right"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "H"},{"OptionBox": "T4","Answer": "B"},
+ {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "F"},{"OptionBox": "T8","Answer": "G"}]
+ },{
+ "Number": "7",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Lungs",
+ "ImagePath":"RS-07.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"113","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"169","leftcoord":"6","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"206","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"285","leftcoord":"6","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"332","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"142","leftcoord":"823","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"223","leftcoord":"823","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"297","leftcoord":"823","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Left superior lobe","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Left oblique fissue","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Left inferior lobe","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Right inferior lobe","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Right oblique fissure","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right middle lobe","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Right horizontal fissure","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right superior lobe","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
+ {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "A"},{"OptionBox": "T7","Answer": "B"},{"OptionBox": "T8","Answer": "C"}]
+ },{
+ "Number": "8",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Diaphragm",
+ "ImagePath":"RS-08.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"43","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"92","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"302","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"341","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"71","leftcoord":"613","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"181","leftcoord":"613","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"222","leftcoord":"613","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"342","leftcoord":"613","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Pericardial sac","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "External intercostal muscle","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Internal intercostal muscle","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Liver","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Diaphragm","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Parietal pleura","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Thymus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Trachea","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "F"},
+ {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
+ },{
+ "Number": "9",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Pulmonary Vessels",
+ "ImagePath":"RS-09.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"27","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"109","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"186","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"268","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"329","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"47","leftcoord":"859","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"179","leftcoord":"859","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"284","leftcoord":"859","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Right pulmonary artery","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Right pulmonary vein","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Esophagus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Aorta","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Diaphragm","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right inferior lobe","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Right middle lobe","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right superior lobe","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "F"},
+ {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
+ },{
+ "Number": "10",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Frontal Bronchi",
+ "ImagePath":"RS-10.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"18","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"59","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"263","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"311","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"44","leftcoord":"802","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"92","leftcoord":"802","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"159","leftcoord":"802","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"269","leftcoord":"802","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Cricoid cartilage","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Trachea","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Left primary bronchus","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Esophagus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right primary bronchus","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Hyoid bone","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
+ {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
+ },{
+ "Number": "11",
+ "Title": "Drag the labels to the correct location on the image.",
+ "activityTitle": "Bronchial Tree",
+ "ImagePath":"RS-11.JPG",
+ "OptionBox": [{"BoxName": "T1","topcoord":"22","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"307","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T3","topcoord":"376","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"419","leftcoord":"3","Answervalue":"","QuizText":""},
+ {"BoxName": "T5","topcoord":"128","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"210","leftcoord":"614","Answervalue":"","QuizText":""},
+ {"BoxName": "T7","topcoord":"353","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"422","leftcoord":"614","Answervalue":"","QuizText":""}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "Right primary bronchus","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Left primary bronchus","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "Left superior secondary bronchus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Left inferior secondary bronchus","textalign":"bottom"},
+ {"OptionNumber": "E","OptionTitle": "Right inferior secondary bronchus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right middle secondary bronchus","textalign":"bottom"},
+ {"OptionNumber": "G","OptionTitle": "Right superior secondary bronchus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Trachea","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
+ {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
+ },{
+ "Number": "12",
+ "Title": "Complete the statements below.",
+ "activityTitle": "Pulmonary Ventilation",
+ "ImagePath":"",
+ "OptionBox": [{"BoxName": "T1","topcoord":"22","leftcoord":"3","Answervalue":"","QuizText":"The movement of air into and out of the lungs is called ______________________ ."},
+ {"BoxName": "T2","topcoord":"307","leftcoord":"3","Answervalue":"","QuizText":"The exchange of gases between the alveoli of the lungs and the blood is called ______________________ ."},
+ {"BoxName": "T3","topcoord":"376","leftcoord":"3","Answervalue":"","QuizText":"The exchange of gases between the blood and tissues is called ________________________ respiration."},
+ {"BoxName": "T4","topcoord":"419","leftcoord":"3","Answervalue":"","QuizText":"The amount of air exchanged during quiet, restful breathing is called ______________________ volume."}],
+ "Options": [{"OptionNumber": "A","OptionTitle": "ventilation","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "external","textalign":"bottom"},
+ {"OptionNumber": "C","OptionTitle": "internal","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tidal","textalign":"bottom"}],
+ "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
+ }]
+ }]
+}
\ No newline at end of file
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-01.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-01.JPG
new file mode 100644
index 0000000..0a37c1a
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-01.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-02.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-02.JPG
new file mode 100644
index 0000000..bec9bd5
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-02.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-03.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-03.JPG
new file mode 100644
index 0000000..aa6da81
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-03.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-04.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-04.JPG
new file mode 100644
index 0000000..8231a63
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-04.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-05.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-05.JPG
new file mode 100644
index 0000000..cbe158d
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-05.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-06.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-06.JPG
new file mode 100644
index 0000000..9017f86
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-06.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-07.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-07.JPG
new file mode 100644
index 0000000..3f11057
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-07.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-08.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-08.JPG
new file mode 100644
index 0000000..bd5a586
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-08.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-09.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-09.JPG
new file mode 100644
index 0000000..9fb3f58
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-09.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-10.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-10.JPG
new file mode 100644
index 0000000..a4e720e
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-10.JPG
diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-11.JPG b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-11.JPG
new file mode 100644
index 0000000..1864db4
--- /dev/null
+++ b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-11.JPG