﻿// called from Master.js window_load(e)


function CustomValidator1_ClientValidate(source, arguments) {
    var control = $("input[id$=ChkAgreeToTerms]").get(0);
    arguments.IsValid = Boolean(control.checked);
}
