﻿function checkForm() {
    box = document.getElementById("acceptance");
    if (box.checked == false) {
        alert("The following error(s) occurred:\n- You must agree to the terms before continuing\n");
        return false;
    }
    else {
        return true;
    }
}
