function ValidateBrochureCheckbox(source, arguments)
{
    var checkBox = document.getElementById('_ctl0_Content_Confirmation');
    
    arguments.IsValid = (checkBox.checked) ? true : false;
}

