﻿
function IsAgree(sender, args)
{
    args.IsValid = true;
    if(args.Value == 1)
    {
        alert("You must agree the the contest rules to enter");
        args.IsValid = false;
    }
}