function checkDate(source,arguments)
{
    arguments.IsValid = false;
    d = new Date(arguments.Value);
    if (d > 0)
    {
        arguments.IsValid=true;
    }
        
}

function checkEmail(source,arguments)
{
    arguments.IsValid = false;
    if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(arguments.Value))
    {
        arguments.IsValid=true;
    }
}


