diff --git a/case1/mpl_links_txt.html b/case1/mpl_links.html
similarity index 94%
rename from case1/mpl_links_txt.html
rename to case1/mpl_links.html
index 956d056..b7565f8 100644
--- a/case1/mpl_links_txt.html
+++ b/case1/mpl_links.html
@@ -5,27 +5,28 @@
New Perspectives on HTML5, CSS3, and JavaScript 6th Edition
Tutorial 13
Case Problem 1
-
+
Monroe Public Library Government Links
- Author:
- Date:
+ Author: Lane and Ruiz
+ Date: 4/10/19
Filename: mpl_links.html
-->
-
+
Monroe Public Library List of Government Sites
+
-
+
+
-
+
-
+
-
+
+
-
+
diff --git a/case1/mpl_links.js b/case1/mpl_links.js
new file mode 100644
index 0000000..da98a17
--- /dev/null
+++ b/case1/mpl_links.js
@@ -0,0 +1,24 @@
+"use strict";
+
+/*
+ New Perspectives on HTML5, CSS3, and JavaScript 6th Edition
+ Tutorial 13
+ Case Problem 1
+
+ Author: Denise Kruschev
+ Date: 2018-03-01
+
+ Filename: mpl_links.js
+
+*/
+
+
+window.addEventListener("load", function() {
+ var allSelect = document.querySelectorAll("form#govLinks select");
+
+ for (var i = 0; i < allSelect.length; i++) {
+ allSelect[i].onchange = function(e) {
+ location.href = e.target.value;
+ }
+ }
+});
\ No newline at end of file
diff --git a/case1/mpl_links_txt.js b/case1/mpl_links_txt.js
deleted file mode 100644
index fe21beb..0000000
--- a/case1/mpl_links_txt.js
+++ /dev/null
@@ -1,15 +0,0 @@
-"use strict";
-
-/*
- New Perspectives on HTML5, CSS3, and JavaScript 6th Edition
- Tutorial 13
- Case Problem 1
-
- Author:
- Date:
-
- Filename: mpl_links.js
-
-*/
-
-
diff --git a/case2/dl_expense_txt.html b/case2/dl_expense.html
similarity index 81%
rename from case2/dl_expense_txt.html
rename to case2/dl_expense.html
index 48fadef..84f70e9 100644
--- a/case2/dl_expense_txt.html
+++ b/case2/dl_expense.html
@@ -5,18 +5,19 @@
New Perspectives on HTML5, CSS3, and JavaScript 6th Edition
Tutorial 13
Case Problem 2
-
+
Travel Expense Report
- Author:
- Date:
+ Author: Lane and Ruiz
+ Date: 4/10/19
Filename: dl_expense.html
-->
-
+
DeLong Enterprises Expense Report
+
@@ -33,13 +34,13 @@