From af9ffbb03105853f664bd0db6420d41b472b875e Mon Sep 17 00:00:00 2001 From: Brian Patino Date: Wed, 23 Mar 2016 10:11:56 -0400 Subject: [PATCH] Initial Commit --- index.php | 216 ++++++++++++++ test.php | 213 +++++++++++++ testjs.js | 69 +++++ worksheet.html | 640 ++++++++++++++++++++++++++++++++++++++++ worksheet.html.old.html | 640 ++++++++++++++++++++++++++++++++++++++++ worksheet.js | 56 ++++ 6 files changed, 1834 insertions(+) create mode 100644 index.php create mode 100644 test.php create mode 100644 testjs.js create mode 100644 worksheet.html create mode 100644 worksheet.html.old.html create mode 100644 worksheet.js diff --git a/index.php b/index.php new file mode 100644 index 0000000..536dc59 --- /dev/null +++ b/index.php @@ -0,0 +1,216 @@ + +

Interactive Financial Aid Worksheet

+
+ +

+

The Office of Student Financial Aid Services urges students and their families to apply for financial aid as early and to consider all + potential funding sources prior to receipt of the fee bill. This worksheet will assist you in determining if a balance is due to the + University, after all available financial aid is applied towards the fee bill. Awards are based on estimated costs subject to change if + tuition and fees are adjusted. Current charges can be viewed on the Bursar’s web site.

+ + Note: Please do not print and return this form. It is for your records only. +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Estimated Yearly Tuition & Fees 2015-2016
In-StateOut-of-StateNew England Regional +
Storrs Campus - Tuition and Fees$ 13,250$ 34,490$ 21,192
Regional Campus - Tuition and Fees$ 11,814$ 32,424$ 19,126
Graduate Tuition and Fees$ 15,174$ 35,640$ 24,800
+












+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Estimated Yearly Charges +
Estimated Tuition and Fees: + + $ + + + +
Average Estimated Room and Board: + + + $ + + + + + Check here if living on campus +
Estimated Total Bill: + = $ + + +
+ Estimated Yearly Financial Aid: +
Estimated Grants: + + $ + + + +
Estimated Federal Loans: + + + $ + + + +
Estimated Scholarships: + + + $ + + + +
Estimated Aid from Other Sources* + + + $ + + + +
Total Estimated Financial Aid + = $ + + +
+ Estimated Remaining Yearly Balance: +
Estimated Bill: + + $ + + + +
Estimated Financial Aid: + + - $ + + + +
Remaining Amount Due on Fee Bill** + + = $ + + + +
+








































+

*Please note that Federal Work-Study awards cannot be used to meet direct expenses, as Work-Study earnings are paid to the student in a + bi-weekly check based upon the number of hours he or she worked in the prior pay period.

+

+ **If a remaining amount due appears you may wish to consider alternative financing options as a means to meet your educational expenses. + Please refer to the + Tips for Financing Your Education page + for information regarding alternative financing options. +

+

+ In addition, the University Bursar offers an + installment payment plan + for fee bills. +

+

Families should plan to have any additional financing finalized prior to the fall fee bill due date of August 1st.

+
+ + + + diff --git a/test.php b/test.php new file mode 100644 index 0000000..c28dab4 --- /dev/null +++ b/test.php @@ -0,0 +1,213 @@ + + + +

Interactive Financial Aid Worksheet

+
+ +

+

The Office of Student Financial Aid Services urges students and their families to apply for financial aid as early and to consider all potential funding sources prior to receipt of the fee bill. This worksheet will assist you in determining if a balance is due to the University, after all available financial aid is applied towards the fee bill. Awards are based on estimated costs subject to change if tuition and fees are adjusted. Current charges can be viewed on the Bursar’s web site.

+ + Note: Please do not print and return this form. It is for your records only. +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Estimated Yearly Tuition & Fees 2014-2015
In-StateOut-of-StateNew England Regional
Storrs Campus - Tuition and Fees $ 12,700 $ 32,880 $ 20,092
Regional Campus - Tuition and Fees $ 10,650 $ 30,830 $ 18,042
Graduate Tuition and Fees $ 14,472 $ 33,944 $ 23,624
+












+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Estimated Yearly Charges +
Estimated Tuition and Fees: + + $ + + + +
Average Estimated Room and Board: + + + $ + + + + + Check here if living on campus +
Estimated Total Bill: + = $ + + +
+ Estimated Yearly Financial Aid: +
Estimated Grants: + + $ + + + +
Estimated Federal Loans: + + + $ + + + +
Estimated Scholarships: + + + $ + + + +
Estimated Aid from Other Sources* + + + $ + + + +
Total Estimated Financial Aid + = $ + + +
+ Estimated Remaining Yearly Balance: +
Estimated Bill: + + $ + + + +
Estimated Financial Aid: + + - $ + + + +
Remaining Amount Due on Fee Bill** + + = $ + + + +
+








































+

*Please note that Federal Work-Study awards cannot be used to meet direct expenses, as Work-Study earnings are paid to the student in a bi-weekly check based upon the number of hours he or she worked in the prior pay period.

+

+ **If a remaining amount due appears you may wish to consider alternative financing options as a means to meet your educational expenses. Please refer to the + Tips for Financing Your Education page + for information regarding alternative financing options. +

+

+ In addition, the University Bursar offers an + installment payment plan + for fee bills. +

+

Families should plan to have any additional financing finalized prior to the fall fee bill due date of August 1st.

+
+ + + + + diff --git a/testjs.js b/testjs.js new file mode 100644 index 0000000..0c02e36 --- /dev/null +++ b/testjs.js @@ -0,0 +1,69 @@ +var tuitionInterval; +var aidInterval; +function GetRadioValue() +{ + var radios = document.getElementsByName('price'); + for (var i = 0, length = radios.length; i < length; i++) { + if (radios[i].checked) { + alert(radios[i].value): + break; + } + } +} +function CalculateTuition() +{ + var tuition = document.getElementById('txtTuition').value; + var roomBoard = document.getElementById('txtRoomBoard').value; + var total = (tuition * 1) + (roomBoard * 1); + document.getElementById('txtTotalBill').value = total; + document.getElementById('txtEstimatedBill').value = total; + CalculateTotal(); +} +function CalculateAid() +{ + var grants = document.getElementById('txtGrants').value; + var loans = document.getElementById('txtLoans').value; + var scholarships = document.getElementById('txtScholarships').value; + var otherAid = document.getElementById('txtOtherAid').value; + var total = (grants * 1) + (loans * 1) + (scholarships * 1) + (otherAid * 1); + document.getElementById('txtTotalAid').value = total; + document.getElementById('txtEstimatedAid').value = total; + CalculateTotal(); +} +function CalculateTotal() +{ + var tuition = document.getElementById('txtTotalBill').value; + var totalAid = document.getElementById('txtTotalAid').value; + document.getElementById('txtAmountDue').value = (tuition * 1) - (totalAid * 1); +} +function OnCampusClick() +{ + var cb = document.getElementById('cbOncampus'); + if (cb.checked){ + // On-Campus Room and Board value, changes each year + document.getElementById('txtRoomBoard').value = 12648; + document.getElementById('txtRoomBoard').readOnly=true; + } + else + { + document.getElementById('txtRoomBoard').value = 0; + document.getElementById('txtRoomBoard').readOnly=false; + } + RunTuitionCalc(); +} +function RunTuitionCalc() +{ + tuitionInterval = setInterval('CalculateTuition()',1); +} +function RunAidCalc() +{ + aidInterval = setInterval('CalculateAid()',1); +} +function StopTuitionCalc() +{ + clearInterval(tuitionInterval); +} +function StopAidCalc() +{ + clearInterval(aidInterval); +} diff --git a/worksheet.html b/worksheet.html new file mode 100644 index 0000000..89bc7a1 --- /dev/null +++ b/worksheet.html @@ -0,0 +1,640 @@ + + + + + + + + + + + + + + Interactive Worksheet › Office of Student Financial Aid Services › UCONN + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+ + +
+
+ +
+
+
+
+

Financial Aid Interactive Worksheet

+
+ +

+

The Office of Student Financial Aid Services urges students and their families to apply for financial aid as early and to consider all potential funding sources prior to receipt of the fee bill. This worksheet will assist you in determining if a balance is due to the University, after all available financial aid is applied towards the fee bill. Awards are based on estimated costs subject to change if tuition and fees are adjusted. Current charges can be viewed on the Bursar’s web site.

+ + Note: Please do not print and return this form. It is for your records only. +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Estimated Yearly Tuition & Fees 2013-2014
In-StateOut-of-StateNew England Regional
Storrs Campus - Tuition and Fees$ 11,926$ 30,790$ 18,830
Regional Campus - Tuition and Fees$ 9,990$ 28,854$ 16,894
Graduate Tuition and Fees$ 13,520$ 31,718$ 22,082
+












+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Estimated Yearly Charges +
Estimated Tuition and Fees: + + $ + + + +
Average Estimated Room and Board: + + + $ + + + + + Check here if living on campus +
Estimated Total Bill: + = $ + + +
+ Estimated Yearly Financial Aid: +
Estimated Grants: + + $ + + + +
Estimated Federal Loans: + + + $ + + + +
Estimated Scholarships: + + + $ + + + +
Estimated Aid from Other Sources* + + + $ + + + +
Total Estimated Financial Aid + = $ + + +
+ Estimated Remaining Yearly Balance: +
Estimated Bill: + + $ + + + +
Estimated Financial Aid: + + - $ + + + +
Remaining Amount Due on Fee Bill** + + = $ + + + +
+








































+

*Please note that Federal Work-Study awards cannot be used to meet direct expenses, as Work-Study earnings are paid to the student in a bi-weekly check based upon the number of hours he or she worked in the prior pay period.

+

+ **If a remaining amount due appears you may wish to consider alternative financing options as a means to meet your educational expenses. Please refer to the + Tips for Financing Your Education page + for information regarding alternative financing options. +

+

+ In addition, the University Bursar offers an + installment payment plan + for fee bills. +

+

Families should plan to have any additional financing finalized prior to the fall fee bill due date of August 1st.

+
+
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/worksheet.html.old.html b/worksheet.html.old.html new file mode 100644 index 0000000..89bc7a1 --- /dev/null +++ b/worksheet.html.old.html @@ -0,0 +1,640 @@ + + + + + + + + + + + + + + Interactive Worksheet › Office of Student Financial Aid Services › UCONN + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+ + +
+
+ +
+
+
+
+

Financial Aid Interactive Worksheet

+
+ +

+

The Office of Student Financial Aid Services urges students and their families to apply for financial aid as early and to consider all potential funding sources prior to receipt of the fee bill. This worksheet will assist you in determining if a balance is due to the University, after all available financial aid is applied towards the fee bill. Awards are based on estimated costs subject to change if tuition and fees are adjusted. Current charges can be viewed on the Bursar’s web site.

+ + Note: Please do not print and return this form. It is for your records only. +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Estimated Yearly Tuition & Fees 2013-2014
In-StateOut-of-StateNew England Regional
Storrs Campus - Tuition and Fees$ 11,926$ 30,790$ 18,830
Regional Campus - Tuition and Fees$ 9,990$ 28,854$ 16,894
Graduate Tuition and Fees$ 13,520$ 31,718$ 22,082
+












+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Estimated Yearly Charges +
Estimated Tuition and Fees: + + $ + + + +
Average Estimated Room and Board: + + + $ + + + + + Check here if living on campus +
Estimated Total Bill: + = $ + + +
+ Estimated Yearly Financial Aid: +
Estimated Grants: + + $ + + + +
Estimated Federal Loans: + + + $ + + + +
Estimated Scholarships: + + + $ + + + +
Estimated Aid from Other Sources* + + + $ + + + +
Total Estimated Financial Aid + = $ + + +
+ Estimated Remaining Yearly Balance: +
Estimated Bill: + + $ + + + +
Estimated Financial Aid: + + - $ + + + +
Remaining Amount Due on Fee Bill** + + = $ + + + +
+








































+

*Please note that Federal Work-Study awards cannot be used to meet direct expenses, as Work-Study earnings are paid to the student in a bi-weekly check based upon the number of hours he or she worked in the prior pay period.

+

+ **If a remaining amount due appears you may wish to consider alternative financing options as a means to meet your educational expenses. Please refer to the + Tips for Financing Your Education page + for information regarding alternative financing options. +

+

+ In addition, the University Bursar offers an + installment payment plan + for fee bills. +

+

Families should plan to have any additional financing finalized prior to the fall fee bill due date of August 1st.

+
+
+
+ +
+
+ + + + + + \ No newline at end of file diff --git a/worksheet.js b/worksheet.js new file mode 100644 index 0000000..160744f --- /dev/null +++ b/worksheet.js @@ -0,0 +1,56 @@ +var tuitionInterval; +var aidInterval; +function CalculateTuition() { + var tuition = document.getElementById('txtTuition').value; + var roomBoard = document.getElementById('txtRoomBoard').value; + var total = (tuition * 1) + (roomBoard * 1); + document.getElementById('txtTotalBill').value = total; + document.getElementById('txtEstimatedBill').value = total; + CalculateTotal(); +} + +function CalculateAid() { + var grants = document.getElementById('txtGrants').value; + var loans = document.getElementById('txtLoans').value; + var scholarships = document.getElementById('txtScholarships').value; + var otherAid = document.getElementById('txtOtherAid').value; + var total = (grants * 1) + (loans * 1) + (scholarships * 1) + (otherAid * 1); + document.getElementById('txtTotalAid').value = total; + document.getElementById('txtEstimatedAid').value = total; + CalculateTotal(); +} + +function CalculateTotal() { + var tuition = document.getElementById('txtTotalBill').value; + var totalAid = document.getElementById('txtTotalAid').value; + document.getElementById('txtAmountDue').value = (tuition * 1) - (totalAid * 1); +} + +function OnCampusClick() { + var cb = document.getElementById('cbOncampus'); + if (cb.checked) { + // On-Campus Room and Board value, changes each year + document.getElementById('txtRoomBoard').value = 13026; + document.getElementById('txtRoomBoard').readOnly = true; + } else { + document.getElementById('txtRoomBoard').value = 0; + document.getElementById('txtRoomBoard').readOnly = false; + } + RunTuitionCalc(); +} + +function RunTuitionCalc() { + tuitionInterval = setInterval('CalculateTuition()', 1); +} + +function RunAidCalc() { + aidInterval = setInterval('CalculateAid()', 1); +} + +function StopTuitionCalc() { + clearInterval(tuitionInterval); +} + +function StopAidCalc() { + clearInterval(aidInterval); +}