﻿function termsCheck() {
    var termsField = document.getElementById('termsAgree');
    if (termsField.checked == false) {
        alert('You must agree to the Terms of Use before using the consultant search.');
        return false;
    } else {
        return true;
    }
}