﻿// JScript File

function DaysChecked(value, args)
{
    args.IsValid = false;

    if(document.getElementById("ctl00_cntPlcContent_chkListDay_0").checked)
    {
        args.IsValid = true;
        return;
    }  

    if(document.getElementById("ctl00_cntPlcContent_chkListDay_1").checked)
    {
        args.IsValid = true;
        return;
    }  

    if(document.getElementById("ctl00_cntPlcContent_chkListDay_2").checked)
    {
        args.IsValid = true;
        return;
    }  

    if(document.getElementById("ctl00_cntPlcContent_chkListDay_3").checked)
    {
        args.IsValid = true;
        return;
    }  

    if(document.getElementById("ctl00_cntPlcContent_chkListDay_4").checked)
    {
        args.IsValid = true;
        return;
    }       
}