document.addEventListener('DOMContentLoaded', function(){
var check = document.getElementById('aceptaDatos');
var btn = document.getElementById('btnContinuarCita');
if(check){
check.addEventListener('change', function(){
if(this.checked){
btn.href = 'https://colombia.oraldrive.com/Reservation?tenantId=35beda20-f7ca-4722-88f3-74aea3610ac9';
btn.classList.remove('popup-btn-disabled');
}else{
btn.href = 'javascript:void(0);';
btn.classList.add('popup-btn-disabled');
}
});
}
});